ant-design-vue/examples/App.vue

19 lines
413 B
Vue
Raw Normal View History

2020-03-23 03:00:24 +00:00
<template>
2020-06-11 08:13:09 +00:00
<div>
<a-button @click="show = !show">按钮</a-button>
<a-tooltip class="ddddd" style="color: blue" v-if="show">
<template v-slot:title>prompt text</template>
<a-button class="test" style="color: red">Tooltip will show when mouse enter.</a-button>
</a-tooltip>
</div>
2020-03-23 03:00:24 +00:00
</template>
2020-06-11 08:13:09 +00:00
<script>
export default {
data() {
return {
show: true,
};
},
};
</script>