Created
March 23, 2018 17:56
-
-
Save TitasGailius/64c1976fa1ca110f1ae15ce3a79de49e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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