Alert - Ant Design官网:警告提示 Alert - Ant Design
<template>
<Alert type="info" show-icon>
<template #message>
<span>自定义消息内容</span>
</template>
<template #description>
<span>自定义描述内容</span>
</template>
</Alert>
</template>
<script lang="ts" setup>
import { Alert } from "ant-design-vue";
</script>
<style lang="scss" scoped></style>
效果: