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.
34 lines
714 B
34 lines
714 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<placement />
|
|
<arrow-point-at-center />
|
|
<auto-adjust-overflow />
|
|
<color />
|
|
</demo-sort>
|
|
</template>
|
|
<script lang="ts">
|
|
import Basic from './basic.vue';
|
|
import Placement from './placement.vue';
|
|
import arrowPointAtCenter from './arrow-point-at-center.vue';
|
|
import AutoAdjustOverflow from './auto-adjust-overflow.vue';
|
|
import Color from './color.vue';
|
|
import CN from '../index.zh-CN.md';
|
|
import US from '../index.en-US.md';
|
|
import { defineComponent } from 'vue';
|
|
export default defineComponent({
|
|
CN,
|
|
US,
|
|
components: {
|
|
Basic,
|
|
Placement,
|
|
arrowPointAtCenter,
|
|
AutoAdjustOverflow,
|
|
Color,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|