ant-design-vue/examples/tooltip.vue

31 lines
510 B
Vue
Raw Normal View History

<template>
2017-11-03 07:35:25 +00:00
<div>
<tool-tip
placement="top"
:title="showText">
<h1 @click="boom" style="display: inline-block">This is just a test, put your cursor here</h1>
</tool-tip>
</div>
</template>
<script>
import { ToolTip } from '../components'
export default {
name: '',
data() {
2017-11-03 07:35:25 +00:00
return {
show: true,
showText: '你好啊23'
}
},
methods: {
boom() {
2017-11-03 07:35:25 +00:00
this.showText += '3'
}
},
components: {
ToolTip
}
}
</script>