We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57dd5f2 commit b1f4f44Copy full SHA for b1f4f44
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "vue-tippy",
3
- "version": "6.3.0",
+ "version": "6.3.1",
4
"main": "index.js",
5
"module": "dist/vue-tippy.mjs",
6
"unpkg": "dist/vue-tippy.iife.js",
src/composables/useTippy.ts
@@ -265,9 +265,11 @@ export function useTippy(
265
}
266
267
268
- onUnmounted(() => {
269
- destroy()
270
- })
+ if (vm) {
+ onUnmounted(() => {
+ destroy()
271
+ })
272
+ }
273
274
if (isRef(opts) || isReactive(opts)) {
275
watch(opts, refresh, { immediate: false })
0 commit comments