Alert
Displays a callout for user attention.
Installation
shell
php artisan ui:add alertUsage
vue
<template>
<Alert>
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
You can add components to your app using the cli.
</AlertDescription>
</Alert>
</template>
<script setup lang="ts">
import { Alert, AlertTitle, AlertDescription } from '@/Components/Alert'
</script>