我想在道具验证器中访问computed
属性:
validator({ type, size }) {
return type === 'disabled' && hasLink()
}
再往下走:
computed: {
hasLink() {
return this.link // another props accessed here
}
},
但是hasLink
在道具验证器中未定义。知道如何在道具验证器中访问this
。
答案 0 :(得分:0)
不能。 Prop Validation:
请注意,道具在创建组件实例之前已被验证,因此实例属性(例如
data
,computed
等)在{{1}中不可用}或default
函数。