oliverdavies.uk/assets/js/app.js

9 lines
138 B
JavaScript
Raw Normal View History

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