使用无线电组切换 LWC 中的内容?
Switching content in LWC with radio group?
我有这个 radio group 应该可以工作,如果我 select 顶部选项,则仅显示前两行,如果我 select 底部选项,则仅显示最后一行。如何在 LWC 中创建这种动态类型的选项卡 selection?
这里记录了您要查找的内容:https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.create_conditional
这看起来像这样:
<template if:true={topIsSelected}>
<!-- first top two rows -->
</template>
<template if:true={bottomIsSelected}>
<!-- last row -->
</template>
我有这个 radio group 应该可以工作,如果我 select 顶部选项,则仅显示前两行,如果我 select 底部选项,则仅显示最后一行。如何在 LWC 中创建这种动态类型的选项卡 selection?
这里记录了您要查找的内容:https://developer.salesforce.com/docs/component-library/documentation/en/lwc/lwc.create_conditional
这看起来像这样:
<template if:true={topIsSelected}>
<!-- first top two rows -->
</template>
<template if:true={bottomIsSelected}>
<!-- last row -->
</template>