forked from opentiny/tiny-vue
22 lines
436 B
Vue
22 lines
436 B
Vue
<template>
|
|
<tiny-tooltip content="鼠标不能进入到 tooltip 中" :enterable="false" placement="bottom">
|
|
<tiny-button type="primary"> 鼠标不能进入到 tooltip 中 </tiny-button>
|
|
</tiny-tooltip>
|
|
</template>
|
|
|
|
<script>
|
|
import { Tooltip, Button } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTooltip: Tooltip,
|
|
TinyButton: Button
|
|
},
|
|
data() {
|
|
return {
|
|
disabled: false
|
|
}
|
|
}
|
|
}
|
|
</script>
|