mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-27 02:01:15 +08:00
f576d5a57b
- Add tooltip-v2 documentation - Complete tooltip-v2 implementation
15 lines
339 B
Vue
15 lines
339 B
Vue
<template>
|
|
<el-tooltip-v2 aria-label="content" show-arrow always-on placement="top">
|
|
<template #trigger>
|
|
<el-button circle
|
|
><el-icon><Plus /></el-icon
|
|
></el-button>
|
|
</template>
|
|
Basic tooltip
|
|
</el-tooltip-v2>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Plus } from '@element-plus/icons-vue'
|
|
</script>
|