Move sidbar into a component

This commit is contained in:
Oliver Davies 2018-12-25 22:46:21 +00:00
parent 762278b437
commit 61e1cdfcf0
4 changed files with 44 additions and 54 deletions

View file

@ -4,9 +4,11 @@ import router from './router'
Vue.config.productionTip = false
import Sidebar from '@/components/Sidebar'
import Navbar from '@/components/Navbar'
Vue.component('navbar', Navbar);
Vue.component('sidebar', Sidebar);
new Vue({
render: h => h(App),