forked from vueComponent/ant-design-vue
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.vue
36 lines (34 loc) · 867 Bytes
/
index.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<template>
<demo-sort>
<Base />
<Icon />
<Status />
<CustomSize />
<CustomColor />
<Download />
<ErrorLevel />
<Popover />
</demo-sort>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
import Base from './base.vue';
import Icon from './icon.vue';
import Status from './status.vue';
import CustomSize from './customSize.vue';
import CustomColor from './customColor.vue';
import Download from './download.vue';
import ErrorLevel from './errorLevel.vue';
import Popover from './popover.vue';
export default defineComponent({
components: { Base, Icon, Status, CustomSize, CustomColor, Download, ErrorLevel, Popover },
category: 'Components',
subtitle: '二维码',
type: 'Data Display',
title: 'QRCode',
CN,
US,
});
</script>