shadcn-vue/apps/www/registry/default/example/AlertDemo.vue
2024-11-21 11:52:31 +08:00

15 lines
384 B
Vue

<script setup lang="ts">
import { Alert, AlertDescription, AlertTitle } from '@/lib/registry/default/ui/alert'
import { Terminal } from 'lucide-vue-next'
</script>
<template>
<Alert>
<Terminal class="h-4 w-4" />
<AlertTitle>Heads up!</AlertTitle>
<AlertDescription>
You can add components to your app using the cli.
</AlertDescription>
</Alert>
</template>