forked from opentiny/tiny-vue
25 lines
473 B
Vue
25 lines
473 B
Vue
<template>
|
|
<div>
|
|
<tiny-tooltip placement="bottom">
|
|
<template #content>
|
|
<div class="h-24">通过 slot = "content" 自定义提示内容</div>
|
|
</template>
|
|
<tiny-button type="primary"> 插槽的使用 </tiny-button>
|
|
</tiny-tooltip>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { Tooltip, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTooltip: Tooltip,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {}
|
|
}
|
|
}
|
|
</script>
|