Skip to content

Instantly share code, notes, and snippets.

@tilleps
Created April 28, 2016 18:20
Show Gist options
  • Save tilleps/77c0721485a105e0e37230d8c867c66d to your computer and use it in GitHub Desktop.
Save tilleps/77c0721485a105e0e37230d8c867c66d to your computer and use it in GitHub Desktop.
VueJS data() being called twice on load
var Component = Vue.extend({
template: "<div>Hello world</div>",
data: function () {
console.log('Component data()');
return {};
},
ready: function () {
console.log('Component ready()');
}
});
var vm = new Component({
el: "#app"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment