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.
39 lines
890 B
39 lines
890 B
<template> |
|
<demo-sort> |
|
<basic /> |
|
<fallback /> |
|
<placeholder /> |
|
<preview-group /> |
|
<previewGroupVisibleVue /> |
|
<previewSrc /> |
|
<controlled-preview /> |
|
</demo-sort> |
|
</template> |
|
|
|
<script lang="ts"> |
|
import Basic from './basic.vue'; |
|
import Fallback from './fallback.vue'; |
|
import Placeholder from './placeholder.vue'; |
|
import previewSrc from './preview-src.vue'; |
|
import PreviewGroup from './preview-group.vue'; |
|
import ControlledPreview from './controlled-preview.vue'; |
|
import previewGroupVisibleVue from './preview-group-visible.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, |
|
Fallback, |
|
previewSrc, |
|
Placeholder, |
|
PreviewGroup, |
|
ControlledPreview, |
|
previewGroupVisibleVue, |
|
}, |
|
}); |
|
</script> |
|
<style></style>
|
|
|