floating-vue icon indicating copy to clipboard operation
floating-vue copied to clipboard

VTooltip component not working (but directive does ?)

Open Ciriak opened this issue 3 years ago • 0 comments

I have this simple tooltip call

 <VTooltip>
    <button>Click me</button>
    <template #popper> test </template>
  </VTooltip>

No content is rendered , only theses comments :

image

It works with the directive !

<template>
  <button v-tooltip="'test'">Click me</button>
</template>

image am i missing something here ?

  • No error or warning
  • The css is imported and i'm using app.use
const app = createApp(App)
  .use(FloatingVue)

Ciriak avatar Nov 24 '22 15:11 Ciriak