Add settings component
This commit is contained in:
parent
f34275ca51
commit
b7bab91f15
2 changed files with 19 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
||||||
|
<template>
|
||||||
|
<div class="row">
|
||||||
|
TODO
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: 'Settings'
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
@ -2,6 +2,8 @@ import Vue from 'vue'
|
||||||
import Router from 'vue-router'
|
import Router from 'vue-router'
|
||||||
import Dashboard from './components/Dashboard.vue'
|
import Dashboard from './components/Dashboard.vue'
|
||||||
import About from './components/About.vue'
|
import About from './components/About.vue'
|
||||||
|
import Settings from './components/Settings.vue'
|
||||||
|
|
||||||
|
|
||||||
Vue.use(Router)
|
Vue.use(Router)
|
||||||
|
|
||||||
|
|
@ -19,5 +21,11 @@ export default new Router({
|
||||||
main: About
|
main: About
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/settings',
|
||||||
|
components: {
|
||||||
|
main: Settings
|
||||||
|
}
|
||||||
|
},
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue