Skip to content

Instantly share code, notes, and snippets.

@TitasGailius
Created March 23, 2018 17:56
Show Gist options
  • Save TitasGailius/64c1976fa1ca110f1ae15ce3a79de49e to your computer and use it in GitHub Desktop.
Save TitasGailius/64c1976fa1ca110f1ae15ce3a79de49e to your computer and use it in GitHub Desktop.
/**
* First, we will load all of this project's Javascript utilities and other
* dependencies. Then, we will be ready to develop a robust and powerful
* application frontend using useful Laravel and JavaScript libraries.
*/
import "./bootstrap"
import Vue from "vue"
import ExampleComponent from "./components/ExampleComponent.vue"
import router from "./router"
import store from "./store"
Vue.component('example', ExampleComponent)
new Vue({
router,
store,
el: '#app'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment