Skip to content

Instantly share code, notes, and snippets.

@roberto-butti
Created May 30, 2017 05:11
Show Gist options
  • Save roberto-butti/2c61e3baedf05ac98275f48813552686 to your computer and use it in GitHub Desktop.
Save roberto-butti/2c61e3baedf05ac98275f48813552686 to your computer and use it in GitHub Desktop.
Register a vue component
if (module.hot)
module.hot.accept()
import Vue from 'vue'
Vue.component('timer', require('./components/Timer.vue'));
new Vue({
el: "#app",
data: {
name: "Tomato"
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment