12 lines
318 B
Vue
12 lines
318 B
Vue
<script setup lang="ts">
|
|
import { Input } from '@/lib/registry/default/ui/input'
|
|
import { Label } from '@/lib/registry/default/ui/label'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="grid w-full max-w-sm items-center gap-1.5">
|
|
<Label for="picture">Picture</Label>
|
|
<Input id="picture" type="file" />
|
|
</div>
|
|
</template>
|