vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
63 lines
1.4 KiB
63 lines
1.4 KiB
<template> |
|
<demo-sort> |
|
<basic /> |
|
<autosize-textarea /> |
|
<presuffix /> |
|
<search-input /> |
|
<search-input-loading /> |
|
<size /> |
|
<group /> |
|
<addon /> |
|
<tooltip /> |
|
<allow-clear /> |
|
<password-input /> |
|
<show-count /> |
|
<textarea-resize /> |
|
<borderlessVue /> |
|
<statusVue /> |
|
</demo-sort> |
|
</template> |
|
|
|
<script> |
|
import Basic from './basic.vue'; |
|
import AutosizeTextarea from './autosize-textarea.vue'; |
|
import Presuffix from './presuffix.vue'; |
|
import SearchInput from './search-input.vue'; |
|
import SearchInputLoading from './search-input-loading.vue'; |
|
import Size from './size.vue'; |
|
import Group from './group.vue'; |
|
import TextareaResize from './textarea.vue'; |
|
import AllowClear from './allow-clear.vue'; |
|
import PasswordInput from './password-input.vue'; |
|
import ShowCount from './show-count.vue'; |
|
import Addon from './addon.vue'; |
|
import Tooltip from './tooltip.vue'; |
|
import borderlessVue from './borderless.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, |
|
AutosizeTextarea, |
|
Presuffix, |
|
SearchInput, |
|
SearchInputLoading, |
|
Size, |
|
Group, |
|
TextareaResize, |
|
Addon, |
|
Tooltip, |
|
AllowClear, |
|
PasswordInput, |
|
ShowCount, |
|
borderlessVue, |
|
}, |
|
}); |
|
</script> |
|
<style></style>
|
|
|