2017-11-02 11:40:49 +00:00
|
|
|
|
<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>
|
2017-11-02 11:40:49 +00:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { ToolTip } from '../components'
|
|
|
|
|
export default {
|
|
|
|
|
name: '',
|
|
|
|
|
data() {
|
2017-11-03 07:35:25 +00:00
|
|
|
|
return {
|
|
|
|
|
show: true,
|
|
|
|
|
showText: '你好啊,23'
|
|
|
|
|
}
|
2017-11-02 11:40:49 +00:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
boom() {
|
2017-11-03 07:35:25 +00:00
|
|
|
|
this.showText += '3'
|
2017-11-02 11:40:49 +00:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
components: {
|
|
|
|
|
ToolTip
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|