如何使用条件操作将 属性 赋给 vue 组件或用户默认值

How to use a conditional operation for overgive a property to a vue component or user the default

我正在尝试使用条件操作来确定是否必须将 属性 传递给 vue-component 或什至使用组件 属性 的默认值。

类似的东西:

<my-example-component 
:example-property="myValue ? {test: 1, example: 'test'} : *use default*">
</my-example-component>

你看我的麻烦^^

我知道这种方式行不通,但你们中的一些人可能有解决我的问题的方法。

祝你有愉快的一天,

马库斯 ;-)

我自己解决了这个问题。

<my-example-component 
:example-property="myValue ? {test: 1, example: 'test'} : NULL">
</my-example-component>

如果 !myVlue 和子组件使用其 属性 的默认值,我只提交 NULL。

亲切的问候,

马库斯 ;-)