mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
17 lines
254 B
Vue
17 lines
254 B
Vue
<template>
|
|
<div>
|
|
<c-tooltip>
|
|
Hover me
|
|
|
|
<template #tooltip>
|
|
Tooltip content
|
|
</template>
|
|
</c-tooltip>
|
|
</div>
|
|
|
|
<div mt-5>
|
|
<c-tooltip tooltip="Tooltip content">
|
|
Hover me
|
|
</c-tooltip>
|
|
</div>
|
|
</template>
|