Skip to content

警告提示 Alert

基础用法

提示
提示
提示
提示
vue
<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>