oliverdavies.uk/assets/js/app.js

9 lines
138 B
JavaScript
Raw Normal View History

2018-09-04 23:30:36 +00:00
window.Vue = require('vue');
2017-08-06 18:01:22 +00:00
2018-09-04 23:30:36 +00:00
import Navbar from './components/Navbar';
2017-08-06 18:01:22 +00:00
2018-09-04 23:30:36 +00:00
const app = new Vue({
el: '#app',
components: { Navbar },
})