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/alert/demo/index.vue

54 lines
1.1 KiB

<template>
<demo-sort>
<basic />
<four-style />
<closable />
<description />
<icon />
<close-text />
<banner />
<custom-icon />
<smooth-closed />
<action />
</demo-sort>
</template>
<script lang="ts">
import Banner from './banner.vue';
import Basic from './basic.vue';
import Closable from './closable.vue';
import CloseText from './close-text.vue';
import Description from './description.vue';
import Icon from './icon.vue';
import Action from './action.vue';
import Style from './style.vue';
import SmoothClosed from './smooth-closed.vue';
import CustomIcon from './custom-icon.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: {
Basic,
Banner,
Closable,
CloseText,
Description,
Icon,
FourStyle: Style, //style 标签报错
SmoothClosed,
CustomIcon,
Action,
},
setup() {
return {};
},
});
</script>
<style>
[id^='components-alert-demo'] .ant-alert {
margin-bottom: 16px;
}
</style>