diff --git a/ui/src/components/Settings.vue b/ui/src/components/Settings.vue index e69de29..4f6ccb9 100644 --- a/ui/src/components/Settings.vue +++ b/ui/src/components/Settings.vue @@ -0,0 +1,11 @@ + + + \ No newline at end of file diff --git a/ui/src/router.js b/ui/src/router.js index bfa3535..f14b4f4 100644 --- a/ui/src/router.js +++ b/ui/src/router.js @@ -2,6 +2,8 @@ import Vue from 'vue' import Router from 'vue-router' import Dashboard from './components/Dashboard.vue' import About from './components/About.vue' +import Settings from './components/Settings.vue' + Vue.use(Router) @@ -19,5 +21,11 @@ export default new Router({ main: About } }, + { + path: '/settings', + components: { + main: Settings + } + }, ] })