You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
304 B
19 lines
304 B
10 months ago
|
---
|
||
|
title: v-tooltip
|
||
|
description: Tooltip 指令
|
||
|
---
|
||
|
|
||
|
此指令用于在任何元素上添加一个提示框。
|
||
|
|
||
|
## 使用方式
|
||
|
|
||
|
```html
|
||
|
<script lang="ts" setup>
|
||
|
import { IconDeleteBin } from "@halo-dev/components"
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<IconDeleteBin v-tooltip="'删除此文档'" />
|
||
|
</template>
|
||
|
```
|