37 lines
867 B
Vue
37 lines
867 B
Vue
|
<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>
|