Skrip Pengaturan Vue JS Dasar untuk Aplikasi Laravel

import Vue from 'vue';
require('./bootstrap');

const app = new Vue({
    el: '#app'
});
Akash