资源
版本
指南
简体中文
深色模式
<template> <div style="margin-bottom: 10px" v-for="v in status"> <bp-alert :status="v" title="提示"> </bp-alert> </div> </template> <script setup lang="ts"> const status = ["info", "success", "warning", "danger"]; </script>