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.
33 lines
629 B
33 lines
629 B
<template>
|
|
<icon-display />
|
|
<demo-sort>
|
|
<basic />
|
|
<twotone />
|
|
<custom />
|
|
<iconfont />
|
|
</demo-sort>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import IconDisplay from '../../../site/src/theme/template/IconDisplay';
|
|
import Basic from './basic.vue';
|
|
import Custom from './custom.vue';
|
|
import Iconfont from './iconfont.vue';
|
|
import Twotone from './two-tone.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: {
|
|
IconDisplay,
|
|
Basic,
|
|
Custom,
|
|
Iconfont,
|
|
Twotone,
|
|
},
|
|
});
|
|
</script>
|