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.
ant-design-vue/components/result/demo/index.vue

43 lines
827 B

<template>
<demo-sort :cols="1">
<success />
<info />
<warning />
<denied />
<find-less />
<server-error />
<error />
<custom-icon />
</demo-sort>
</template>
<script lang="ts">
import Success from './success.vue';
import Info from './info.vue';
import Warning from './warning.vue';
import Denied from './403.vue';
import FindLess from './404.vue';
import ServerError from './500.vue';
import Error from './error.vue';
import CustomIcon from './customIcon.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: {
Success,
Info,
Warning,
Denied,
FindLess,
ServerError,
Error,
CustomIcon,
},
setup() {
return {};
},
});
</script>