ant-design-vue/examples/App.vue

21 lines
279 B
Vue
Raw Normal View History

2020-03-23 03:00:24 +00:00
<template>
2020-06-11 08:13:09 +00:00
<div>
2020-06-20 07:14:51 +00:00
<demo />
2020-06-11 08:13:09 +00:00
</div>
2020-03-23 03:00:24 +00:00
</template>
2020-06-11 08:13:09 +00:00
<script>
2020-08-13 09:52:41 +00:00
import demo from '../antdv-demo/docs/tooltip/demo/auto-adjust-overflow';
2020-06-20 07:14:51 +00:00
2020-06-11 08:13:09 +00:00
export default {
2020-06-20 07:14:51 +00:00
components: {
demo,
},
2020-06-11 08:13:09 +00:00
data() {
return {
2020-08-02 14:27:22 +00:00
visible: true,
2020-06-20 07:14:51 +00:00
current: ['mail'],
2020-06-11 08:13:09 +00:00
};
},
};
</script>