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.
49 lines
1012 B
49 lines
1012 B
<template> |
|
<demo-sort :cols="1"> |
|
<Base /> |
|
<Customize /> |
|
<Size /> |
|
<Vertical /> |
|
<Align /> |
|
<Wrap /> |
|
<Split /> |
|
<Compact /> |
|
<CompactButtons /> |
|
<CompactButtonVertical /> |
|
</demo-sort> |
|
</template> |
|
<script lang="ts"> |
|
import Base from './base.vue'; |
|
import Customize from './customize.vue'; |
|
import Vertical from './vertical.vue'; |
|
import Align from './align.vue'; |
|
import Wrap from './wrap.vue'; |
|
import Split from './split.vue'; |
|
import Compact from './compact.vue'; |
|
import CompactButtons from './compact-buttons.vue'; |
|
import CompactButtonVertical from './compact-button-vertical.vue'; |
|
import CN from '../index.zh-CN.md'; |
|
import US from '../index.en-US.md'; |
|
import { defineComponent } from 'vue'; |
|
import Size from './size.vue'; |
|
|
|
export default defineComponent({ |
|
CN, |
|
US, |
|
components: { |
|
Base, |
|
Customize, |
|
Vertical, |
|
Align, |
|
Wrap, |
|
Split, |
|
Compact, |
|
CompactButtons, |
|
CompactButtonVertical, |
|
Size, |
|
}, |
|
setup() { |
|
return {}; |
|
}, |
|
}); |
|
</script>
|
|
|