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', });