mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
17 lines
337 B
Vue
17 lines
337 B
Vue
<template>
|
|
<labeled-input>
|
|
<template #label>
|
|
<slot />
|
|
</template>
|
|
<template #input>
|
|
<input type="checkbox" class="toggle toggle-primary" v-model="modelValue" />
|
|
</template>
|
|
</labeled-input>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
const { modelValue } = defineModels<{
|
|
modelValue: boolean;
|
|
}>();
|
|
</script>
|