我想知道是否有办法做我试图在下面描述的事情:
假设我们有一个带有插槽的组件,并且已经定义了一个备用内容。
在其他地方使用此组件时,我希望有以下行为:
<TheComponent>
<template v-slot:name="{ data }">
<fallback v-if="condition(data)"/>
</template>
</TheComponent>
我想fallback
标签(或类似标签)不存在(至少,我没有找到它......)。所以我想我想错了,但我找不到解决问题的方法。
问题是我无法更改它,TheComponent
因为它是由外部库提供的,我不想重新创建内容。
实际上,如果它可以提供帮助,我正在尝试隐藏展开按钮以防止在 Vuetify 中展开一行data-table
,具体取决于该行在展开部分中是否有要显示的内容。所以我想写一些类似的东西:
<v-data-table :items="items" show-expand ...>
<template v-slot:item.data-table-expand="{ item }">
<!-- Here I want the default behavior only if my item respects some condition -->
<fallback v-if="condition(item)"/>
<!-- Otherwise, I don't want to display the button that expands the row -->
</template>
</v-data-table>
预先感谢您的帮助。