mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-25 23:03:47 +01:00
11 lines
220 B
Vue
11 lines
220 B
Vue
<template>
|
|
<label class="label cursor-pointer gap-4">
|
|
<div class="label-text"><slot name="label" /></div>
|
|
<slot name="input" />
|
|
</label>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
<style scoped></style>
|