警告提示

用于吸引用户注意的醒目提示框。

安装

pnpm dlx shadcn-vue@latest add alert

用法

vue
<script setup lang="ts">
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'
</script>

<template>
  <Alert>
    <AlertTitle>注意!</AlertTitle>
    <AlertDescription>
      您可以通过 CLI 向应用添加组件。
    </AlertDescription>
  </Alert>
</template>

示例

默认样式

错误警示样式

Edit this page on GitHub