警告提示
用于吸引用户注意的醒目提示框。
Heads up!
You can add components to your app using the cli.
安装
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>示例
默认样式
Heads up!
You can add components to your app using the cli.
错误警示样式
Error
Your session has expired. Please log in again.