Vue.component('foo', { template: '<div>{{ num }}</div>', props: { func: { type: Function, default: () => 1, }, }, data() { return { num: this.func() } ...
確定! 回上一頁