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

15 lines
390 B
Vue

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