Skip to content

Instantly share code, notes, and snippets.

@blogcacanid
Created April 21, 2020 01:30
Show Gist options
  • Save blogcacanid/ea6c0f4bc8e3b3342bb86df17aca50eb to your computer and use it in GitHub Desktop.
Save blogcacanid/ea6c0f4bc8e3b3342bb86df17aca50eb to your computer and use it in GitHub Desktop.
app.js Integrasi Laravel 7 Dan Vue.js
import './bootstrap'
import Vue from 'vue'
import router from './router'
import App from './layouts/App.vue'
new Vue({
router,
el: '#app',
render: h => h(App)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment