Fix issues

This commit is contained in:
Oliver Davies 2019-03-26 15:57:08 +00:00
parent d7b5ec15d1
commit c97714167d
2 changed files with 42 additions and 18 deletions

View file

@ -1,9 +1,7 @@
window.hljs = require('highlightjs')
window.Vue = require('vue')
import Navbar from './components/Navbar'
import Vue from 'vue'
import Navbar from './components/Navbar';
const app = new Vue({
new Vue({
el: '#app',
components: { Navbar },
components: { Navbar }
})