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

10 lines
171 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/new-york/ui/button'
</script>
<template>
<Button variant="outline">
Outline
</Button>
</template>