2020-08-27 17:18:57 +08:00

12 lines
213 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: templateLayout
---
```vue
<template>
<span v-tooltip="'这里是提示文字'">当鼠标经过这段文字时会显示一个气泡框</span>
</template>
<script>
export default {
}
</script>
```