Alert 提示
用于页面中展示重要的提示信息。
基础用法
Alert 组件提供四种类型,由 type 属性指定,为 success| warning | danger | info , 默认值为 info。
this is the alert
this is the alert
this is the alert
this is the alert
<script setup>
import Alert from '@/components/Alert/Alert.vue'
</script>
<template>
<div class="basic block">
<Alert type="success">this is the alert</Alert>
<Alert type="warning">this is the alert</Alert>
<Alert type="info">this is the alert</Alert>
<Alert type="danger">this is the alert</Alert>
</div>
</template>