12 lines
193 B
Vue
12 lines
193 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/new-york/ui/button'
|
|
</script>
|
|
|
|
<template>
|
|
<Button as-child>
|
|
<a href="/login">
|
|
Login
|
|
</a>
|
|
</Button>
|
|
</template>
|