Skip to content

Instantly share code, notes, and snippets.

@godilite
Created February 28, 2020 15:17
Show Gist options
  • Save godilite/90082201312d398164426fb16348f372 to your computer and use it in GitHub Desktop.
Save godilite/90082201312d398164426fb16348f372 to your computer and use it in GitHub Desktop.
import './bootstrap';
import Vue from 'vue';
import Routes from '@/js/routes.js';
import App from '@/js/views/App';
/**
* Next, we will create a fresh Vue application instance and attach it to
* the page. Then, you may begin adding components to this application
* or customize the JavaScript scaffolding to fit your unique needs.
*/
const app = new Vue({
el: '#app',
router: Routes,
render: h => h(App),
});
export default app;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment