Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add support for vue components in useTippy #325

Merged
merged 2 commits into from
Mar 19, 2025

Conversation

nknwns
Copy link
Contributor

@nknwns nknwns commented Mar 19, 2025

Added support for Vue components in useTippy.

There is now support for such tricks:

<template>
    <UiButton ref="button">
        Confirm
    </UiButton>
</template>
<script setup>
import { useTemplateRef } from 'vue';
import { useTippy } from 'vue-tippy';
import { UiButton } from '@/components/ui/UiButton.vue';

const button = useTemplateRef('button');

useTippy(button, { content: 'Test' });
</script>

@KABBOUCHI KABBOUCHI merged commit daf61cb into KABBOUCHI:main Mar 19, 2025
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants