我试图只为一个标题(值为“Retire”的标题)创建一个工具提示,而不为其他标题创建。
这是一个漫长的旅程。我是vue的新手,因此与AI物种(chatgpt)结盟,这对我有一定的帮助。现在我的前端没有显示错误,浏览器没有显示错误,但没有工具提示显示。有人能帮助我实现这一点吗?谢谢
这是我创建数据表并设置当前标题的代码片段。
<v-data-table
class="zebrastripes"
:items="autofilterItems"
:items-per-page="20"
:footer-props="{
'items-per-page-options': [5, 10, 20, -1],
}"
:headers="headers"
:search="search"
:no-results-text="$t('General.noSearchMatch')"
:custom-sort="dateSorting"
:loading="trigger_loader"
>
<template v-slot:header="header">
<th :key="header.text">
<v-tooltip :value="header.value === 'Retire'" bottom>
<template v-slot:activator="{ on }">
<span v-on="on">{{header.text}}</span>
</template>
<span v-if="header.value === 'Retire'">{{ header.tooltip }}</span>
</v-tooltip>
</th>
</template>
1条答案
按热度按时间piv4azn71#
您可以在每个标题项上使用
header.value
插槽,并应用一个条件来仅显示特定标题的工具提示。下面是一个使用工具提示的例子。你会发现工具提示只会显示标题为
Retire
的标题。