我有一个register-task-popup
组件,可以使用personId
数据:
<register-task-popup
person-id="${personId}"
chat-customer-information='${JSON.stringify(chatCustomerInformation)}'
</register-task-popup>`;
personId
数据是可选的,有时可用,有时则不可用。如果没有定义person-id
,是否只能添加personId
属性?
答案 0 :(得分:1)
如下所示对我有用-
<register-task-popup
{{( personId == '') ? "" : "person-id=''"+ personId+"''" }} chat-customer-
information='${JSON.stringify(chatCustomerInformation)}'>
</register-task-popup>`;