<customeComponet
:propA="needPropA ? dataA : null">
</customeComponet>
···data () { return {
dataA: {},
needPropA: false
}
}现在的问题是 当不满足needPropA的时候,直接不传propA,除了写两次customComponent然后用v-if控制这种方法还有没有其他处理的办法?
添加回答
举报
0/150
提交
取消