Skip to content

Instantly share code, notes, and snippets.

@MohitTilwani15
Created August 28, 2018 09:31
Show Gist options
  • Save MohitTilwani15/121cdc335fcc2403e83f01ce14cc9b69 to your computer and use it in GitHub Desktop.
Save MohitTilwani15/121cdc335fcc2403e83f01ce14cc9b69 to your computer and use it in GitHub Desktop.
debugger in Vuejs, used in for loop in template
Vue.component('debug', {
props: {
item: {
type: Object,
default() {
return {};
},
},
},
created() {
console.log('debug', this.item);
},
template: '<!-- debug -->',
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment