shadcn-vue/apps/www/src/content/docs/components/alert.md
2023-09-20 14:19:08 +08:00

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>