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.
37 lines
623 B
37 lines
623 B
3 years ago
|
<template>
|
||
|
<demo-sort>
|
||
|
<basic />
|
||
|
<half />
|
||
|
<Text />
|
||
|
<disabled />
|
||
|
<clear />
|
||
|
<character />
|
||
|
</demo-sort>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import Basic from './basic.vue';
|
||
|
import Half from './half.vue';
|
||
|
import Text from './text.vue';
|
||
|
import Disabled from './disabled.vue';
|
||
|
import Clear from './clear.vue';
|
||
|
import Character from './character.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,
|
||
|
Half,
|
||
|
Text,
|
||
|
Disabled,
|
||
|
Clear,
|
||
|
Character,
|
||
|
},
|
||
|
});
|
||
|
</script>
|