Skip to content

Instantly share code, notes, and snippets.

@TitasGailius
Created March 23, 2018 16:59
Show Gist options
  • Save TitasGailius/6ff5c4f420e2d95f09aea59120c02b99 to your computer and use it in GitHub Desktop.
Save TitasGailius/6ff5c4f420e2d95f09aea59120c02b99 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"
Vue.component('example', ExampleComponent)
new Vue({
el: '#app'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment