admin管理员组文章数量:1347701
I have code where I'm using <v-tooltip>
in slot of <v-select>
. When I try to click on tooltip icon which is in prepent-inner slot. click is also applying on <v-select>
and dropdown menu is opening.
<v-select
v-model="Settings.Configurations.ID"
name="hierarchicalId"
item-title="name"
item-value="name"
:items="businessRuleColumn"
:items-props="{ attach: true }"
clearable
clear-icon="fal fa-times"
persistent-clear
variant="outlined"
:label="$t('adminmon.id')"
hide-details="auto"
@update:model-value="getTableData"
:error-messages="
ValidationRules.invalidSelection(
Settings.Configurations.ID,
$t('adminmon.id'),
'name',
businessRuleColumn
)
"
>
<template #prepend-inner>
<s-tooltip location="top">
{{ $t('admin.widgets.edit_widget.hierarchical_id_tooltip') }}
</s-tooltip>
</template>
</v-select>
Here is the code for custom tooltip components.
s-tooltip.vue
:
<template>
<v-tooltip v-bind="$attrs" :location="$attrs.location || 'right'" v-model="showTooltip">
<template #activator="{ props }">
<span @click="toggleTooltip" v-bind="props">
<slot name="content">
<v-icon class="tooltip-icon" color="primary" size="small" @click="toggleTooltip" @click.stop.prevent> fas fa-info-circle </v-icon>
</slot>
</span>
</template>
<div class="tooltip-content" ref="tooltipContent">
<slot />
<v-btn v-if="isClicked" icon class="close-btn bg-transparent" size="xs-small" @click="closeTooltip">
<v-icon color="grey">fas fa-times</v-icon>
</v-btn>
</div>
</v-tooltip>
</template>
I want to stop propagating the click event to the parent and do not want to open the menu if I click on the tooltip Icon.
本文标签: vuejs3Vuetify 3 component event propagation to parentStack Overflow
版权声明:本文标题:vuejs3 - Vuetify 3 component event propagation to parent - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743840394a2548169.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论