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

12 lines
192 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/default/ui/button'
</script>
<template>
<Button as-child>
<a href="/login">
Login
</a>
</Button>
</template>