Skip to content

Instantly share code, notes, and snippets.

@shunwitter
Created October 25, 2016 01:01
Show Gist options
  • Save shunwitter/8c7c28f00da4920f3a06f6c55b3727c8 to your computer and use it in GitHub Desktop.
Save shunwitter/8c7c28f00da4920f3a06f6c55b3727c8 to your computer and use it in GitHub Desktop.
Vuejs Simple Convention
const Vue = require('vue')
const App = require('./components/App.vue')
// Convention: Global object for events
window.eventHub = new Vue()
new Vue({
el: '#my-app',
components: {
app: App,
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment