Replies: 1 comment
-
@Akryum could you please advise on how to do this in NUXT 3? Thank you. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Like I did in this commit, creating a new theme (and the corresponding component) allows you to customize v-tooltip to your needs.
In this example, I'll recreate the
VMenu
component (added in the commit mentioned above). This component should look exactly like theVDropdown
component but should trigger withhover
instead ofclick
. It should also stay shown when the user mouse over the popper content itself.themes
config:Menu.vue
component:In this example, our
Menu
component will inherit theDropdown
styles, but we can also add our own:Beta Was this translation helpful? Give feedback.
All reactions