500 B
500 B
| title | description |
|---|---|
| Alert | Displays a callout for user attention. |
Installation
npx shadcn-vue@latest add alert
Usage
<script setup lang="ts">
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert'
</script>
<template>
<Alert>
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
You can add components to your app using the cli.
</AlertDescription>
</Alert>
</template>