29 lines
624 B
Vue
29 lines
624 B
Vue
<template>
|
|
<div>
|
|
<button class="tiny-button tiny-button--default" @click="showTip">手动控制tooltip的显示和隐藏</button>
|
|
<tiny-tooltip v-model="showTooltip" content="手动控制模式" :manual="true">
|
|
<button class="tiny-button tiny-button--primary">手动控制模式</button>
|
|
</tiny-tooltip>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { Tooltip } from '@opentiny/vue'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTooltip: Tooltip
|
|
},
|
|
data() {
|
|
return {
|
|
showTooltip: false
|
|
}
|
|
},
|
|
methods: {
|
|
showTip() {
|
|
this.showTooltip = !this.showTooltip
|
|
}
|
|
}
|
|
}
|
|
</script>
|