Created
March 23, 2018 17:41
-
-
Save TitasGailius/f2bcd3e36c27547e281a35936911576e 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" | |
Vue.component('example', ExampleComponent) | |
new Vue({ | |
router, | |
el: '#app' | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment