diff --git a/ui/src/App.vue b/ui/src/App.vue index 56a0846..9d8de09 100644 --- a/ui/src/App.vue +++ b/ui/src/App.vue @@ -45,8 +45,6 @@ \ No newline at end of file diff --git a/ui/src/components/Settings.vue b/ui/src/components/Settings.vue new file mode 100644 index 0000000..e69de29 diff --git a/ui/src/router.js b/ui/src/router.js index 75c8699..bfa3535 100644 --- a/ui/src/router.js +++ b/ui/src/router.js @@ -1,6 +1,7 @@ import Vue from 'vue' import Router from 'vue-router' import Dashboard from './components/Dashboard.vue' +import About from './components/About.vue' Vue.use(Router) @@ -12,5 +13,11 @@ export default new Router({ main: Dashboard } }, + { + path: '/about', + components: { + main: About + } + }, ] })