Added placholder view for XML formatter

This commit is contained in:
2023-06-19 07:18:33 +02:00
parent f01a8554f1
commit b7386450ae
4 changed files with 35 additions and 10 deletions

View File

@@ -3,6 +3,8 @@ import { createRouter, createWebHistory } from 'vue-router'
const landingPage = import("@views/LandingView.vue")
const restMock = import("@views/RestMockView.vue")
const xmlFormatter = import("@views/XmlFormatterView.vue")
const xsltTool = import("@views/XSLTView.vue")
const xsdTool = import("@views/XSDView.vue")
const xpathTool = import("@views/XPathView.vue")
@@ -14,6 +16,11 @@ const routes = [
name: 'landing',
component: () => landingPage
},
{
path: '/format/xml',
name: 'xmlFormatter',
component: () => xmlFormatter
},
{
path: '/xml/xpath',
name: 'xpath',