Fix linting issues

This commit is contained in:
Oliver Davies 2019-03-30 00:09:48 +00:00
parent 7366131817
commit a5939ffb50
21 changed files with 117 additions and 118 deletions

View file

@ -9,12 +9,12 @@ import VueRouter from 'vue-router'
Vue.config.productionTip = false
Vue.component('header-buttons', HeaderButtons);
Vue.component('navbar', Navbar);
Vue.component('sidebar', Sidebar);
Vue.component('title-block', TitleBlock);
Vue.component('header-buttons', HeaderButtons)
Vue.component('navbar', Navbar)
Vue.component('sidebar', Sidebar)
Vue.component('title-block', TitleBlock)
Vue.use(VueRouter);
Vue.use(VueRouter)
new Vue({
render: h => h(App),