mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-27 12:08:49 +08:00
16 lines
365 B
Markdown
16 lines
365 B
Markdown
```html
|
|
<template>
|
|
<Wb-button v-tooltip :tooltip-option="option13">html字符串</Wb-button>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data: function(){
|
|
option13: {
|
|
direction: 'bottom',
|
|
align: "left",
|
|
html: "<em>我是带em标签的字符串</em>",
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
``` |