You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/tooltip/demo/index.vue

27 lines
482 B

<template>
<div>
7 years ago
<h1>Basic</h1>
<Basic />
<h1>ArrowCenter</h1>
<ArrowCenter />
<h1>AutoAdjust</h1>
<AutoAdjust />
<h1>Placement</h1>
<Placement />
</div>
</template>
<script>
7 years ago
import Basic from './basic'
import ArrowCenter from './arrow-point-at-center'
import AutoAdjust from './auto-adjust-overflow'
import Placement from './placement'
export default {
components: {
Basic,
ArrowCenter,
AutoAdjust,
Placement,
},
}
</script>