Added basic router
This commit is contained in:
22
new-frontend/package-lock.json
generated
22
new-frontend/package-lock.json
generated
@@ -8,7 +8,8 @@
|
|||||||
"name": "new-frontend",
|
"name": "new-frontend",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^3.3.4"
|
"vue": "^3.3.4",
|
||||||
|
"vue-router": "^4.2.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rushstack/eslint-patch": "^1.2.0",
|
"@rushstack/eslint-patch": "^1.2.0",
|
||||||
@@ -880,6 +881,11 @@
|
|||||||
"@vue/shared": "3.3.4"
|
"@vue/shared": "3.3.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/@vue/devtools-api": {
|
||||||
|
"version": "6.5.0",
|
||||||
|
"resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.5.0.tgz",
|
||||||
|
"integrity": "sha512-o9KfBeaBmCKl10usN4crU53fYtC1r7jJwdGKjPT24t348rHxgfpZ0xL3Xm/gLUYnc0oTp8LAmrxOeLyu6tbk2Q=="
|
||||||
|
},
|
||||||
"node_modules/@vue/eslint-config-prettier": {
|
"node_modules/@vue/eslint-config-prettier": {
|
||||||
"version": "7.1.0",
|
"version": "7.1.0",
|
||||||
"resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz",
|
"resolved": "https://registry.npmjs.org/@vue/eslint-config-prettier/-/eslint-config-prettier-7.1.0.tgz",
|
||||||
@@ -3698,6 +3704,20 @@
|
|||||||
"node": ">=4.0"
|
"node": ">=4.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/vue-router": {
|
||||||
|
"version": "4.2.2",
|
||||||
|
"resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.2.2.tgz",
|
||||||
|
"integrity": "sha512-cChBPPmAflgBGmy3tBsjeoe3f3VOSG6naKyY5pjtrqLGbNEXdzCigFUHgBvp9e3ysAtFtEx7OLqcSDh/1Cq2TQ==",
|
||||||
|
"dependencies": {
|
||||||
|
"@vue/devtools-api": "^6.5.0"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/posva"
|
||||||
|
},
|
||||||
|
"peerDependencies": {
|
||||||
|
"vue": "^3.2.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/vue-template-compiler": {
|
"node_modules/vue-template-compiler": {
|
||||||
"version": "2.7.14",
|
"version": "2.7.14",
|
||||||
"resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz",
|
"resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.14.tgz",
|
||||||
|
|||||||
@@ -12,7 +12,8 @@
|
|||||||
"format": "prettier --write src/"
|
"format": "prettier --write src/"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"vue": "^3.3.4"
|
"vue": "^3.3.4",
|
||||||
|
"vue-router": "^4.2.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@rushstack/eslint-patch": "^1.2.0",
|
"@rushstack/eslint-patch": "^1.2.0",
|
||||||
|
|||||||
@@ -1,8 +1,11 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref } from 'vue';
|
import { onMounted, ref } from 'vue';
|
||||||
import XmlTool from './components/XmlTool.vue'
|
import { RouterView } from 'vue-router';
|
||||||
|
import XmlTool from './components/XmlTool.vue';
|
||||||
|
|
||||||
|
const activeToolBox = ref('');
|
||||||
|
|
||||||
|
|
||||||
const activeToolBox = ref('')
|
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
activeToolBox.value = "xml";
|
activeToolBox.value = "xml";
|
||||||
@@ -10,19 +13,7 @@ onMounted(() => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<label for="xml">XML</label>
|
<XmlTool></XmlTool>
|
||||||
<input v-model="activeToolBox" type="radio" id="xml" value="xml" />
|
|
||||||
|
|
||||||
<label for="formatter">Formatter</label>
|
|
||||||
<input v-model="activeToolBox" type="radio" id="formatter" value="formatter" />
|
|
||||||
|
|
||||||
<label for="restmock">REST Mock</label>
|
|
||||||
<input v-model="activeToolBox" type="radio" id="restmock" value="restmock" />
|
|
||||||
|
|
||||||
<br><br>
|
|
||||||
<XmlTool v-if="activeToolBox == 'xml'" />
|
|
||||||
<h1 v-if="activeToolBox == 'formatter'">Formatter</h1>
|
|
||||||
<h1 v-if="activeToolBox == 'restmock'">REST Mock</h1>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
|||||||
11
new-frontend/src/components/Formatter.vue
Normal file
11
new-frontend/src/components/Formatter.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { onMounted, ref, watch } from 'vue';
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>Formatter</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped></style>
|
||||||
11
new-frontend/src/components/Landing.vue
Normal file
11
new-frontend/src/components/Landing.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { onMounted, ref, watch } from 'vue';
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>Landing</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped></style>
|
||||||
11
new-frontend/src/components/RestMock.vue
Normal file
11
new-frontend/src/components/RestMock.vue
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
import { onMounted, ref, watch } from 'vue';
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<h1>RestMock</h1>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped></style>
|
||||||
@@ -10,7 +10,7 @@ const result = ref('');
|
|||||||
const activeXmlTool = ref('');
|
const activeXmlTool = ref('');
|
||||||
|
|
||||||
async function submit() {
|
async function submit() {
|
||||||
const engineEndpoint = engine.value == "libxml" ? "libxml" : "java"
|
const engineEndpoint = engine.value == "libxml" ? "libxml" : "java";
|
||||||
const url = document.location.protocol + "//" + document.location.hostname + "/" + engineEndpoint + "/" + activeXmlTool.value;
|
const url = document.location.protocol + "//" + document.location.hostname + "/" + engineEndpoint + "/" + activeXmlTool.value;
|
||||||
|
|
||||||
var version = "1.0";
|
var version = "1.0";
|
||||||
|
|||||||
21
new-frontend/src/router/index.ts
Normal file
21
new-frontend/src/router/index.ts
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
import { createRouter, createWebHistory } from 'vue-router'
|
||||||
|
import XmlTool from '../components/XmlTool.vue';
|
||||||
|
|
||||||
|
|
||||||
|
const router = createRouter({
|
||||||
|
history: createWebHistory(import.meta.env.BASE_URL),
|
||||||
|
routes: [
|
||||||
|
{
|
||||||
|
path: '/',
|
||||||
|
name: 'landing',
|
||||||
|
component: () => import('../components/XmlTool.vue')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: '/xmltools',
|
||||||
|
name: 'portfolio',
|
||||||
|
component: () => import('../views/PortfolioView.vue')
|
||||||
|
}
|
||||||
|
]
|
||||||
|
})
|
||||||
|
|
||||||
|
export default router;
|
||||||
Reference in New Issue
Block a user