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.
38 lines
724 B
38 lines
724 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<async />
|
|
<prefix />
|
|
<readonly />
|
|
<placement />
|
|
<FormMentions />
|
|
<statusVue />
|
|
</demo-sort>
|
|
</template>
|
|
<script>
|
|
import Basic from './basic.vue';
|
|
import Async from './async.vue';
|
|
import FormMentions from './form.vue';
|
|
import Prefix from './prefix.vue';
|
|
import Readonly from './readonly.vue';
|
|
import Placement from './placement.vue';
|
|
import statusVue from './status.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: {
|
|
statusVue,
|
|
Basic,
|
|
Async,
|
|
Prefix,
|
|
Readonly,
|
|
Placement,
|
|
FormMentions,
|
|
},
|
|
});
|
|
</script>
|