9 lines
138 B
JavaScript
9 lines
138 B
JavaScript
window.Vue = require('vue');
|
|
|
|
import Navbar from './components/Navbar';
|
|
|
|
const app = new Vue({
|
|
el: '#app',
|
|
components: { Navbar },
|
|
})
|