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.
28 lines
511 B
28 lines
511 B
<template> |
|
<demo-sort :cols="1"> |
|
<Locale /> |
|
<Size /> |
|
<Direction /> |
|
<Theme /> |
|
</demo-sort> |
|
</template> |
|
|
|
<script> |
|
import Locale from './locale.vue'; |
|
import Size from './size.vue'; |
|
import Direction from './direction.vue'; |
|
import Theme from './theme.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: { |
|
Locale, |
|
Size, |
|
Theme, |
|
Direction, |
|
}, |
|
}); |
|
</script>
|
|
|