element-plus/docs/examples/tooltip-v2/render-to-root.vue
JeremyWuuuuu f576d5a57b
feat(components): [tooltip-v2] documentation (#6870)
- Add tooltip-v2 documentation
- Complete tooltip-v2 implementation
2022-03-29 15:12:10 +08:00

9 lines
226 B
Vue

<template>
<el-tooltip-v2 aria-label="content" teleported to="body">
<template #trigger>
<el-button>hover me</el-button>
</template>
<div>I am attached to document.body</div>
</el-tooltip-v2>
</template>