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
980 B
49 lines
980 B
<template>
|
|
<demo-sort>
|
|
<Base />
|
|
<Icon />
|
|
<Status />
|
|
<CustomType />
|
|
<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';
|
|
import CustomType from './customType.vue';
|
|
|
|
export default defineComponent({
|
|
components: {
|
|
Base,
|
|
Icon,
|
|
Status,
|
|
CustomSize,
|
|
CustomColor,
|
|
Download,
|
|
ErrorLevel,
|
|
Popover,
|
|
CustomType,
|
|
},
|
|
category: 'Components',
|
|
subtitle: '二维码',
|
|
type: 'Data Display',
|
|
title: 'QRCode',
|
|
CN,
|
|
US,
|
|
});
|
|
</script>
|