Installation creating component and child Binding Event Data binding v-for, v-if etc. styling components and adding classes Lifecycle hooks code example
Example: vuejs does props factory function have access to vue instance
Vue.component('foo', {
template: '<div>{{ num }}</div>',
props: {
func: {
type: Number,
default: () => this.a,
},
},
data() {
return {
num: this.func(),
a: -22
}
}
})
new Vue({
el: '#app',
});