opnform-host-nginx/client/components/forms/CheckboxInput.vue

59 lines
1.1 KiB
Vue
Raw Normal View History

2023-12-09 15:47:03 +01:00
<template>
<input-wrapper v-bind="inputWrapperProps">
<template #label>
<span />
</template>
<v-checkbox
:id="id ? id : name"
v-model="compVal"
:disabled="disabled ? true : null"
:name="name"
:color="color"
>
2023-12-09 15:47:03 +01:00
<slot name="label">
{{ label }}
<span
v-if="required"
class="text-red-500 required-dot"
>*</span>
2023-12-09 15:47:03 +01:00
</slot>
</v-checkbox>
<template #help>
<slot name="help" />
</template>
<template #error>
<slot name="error" />
</template>
</input-wrapper>
</template>
<script>
import { inputProps, useFormInput } from "./useFormInput.js"
import VCheckbox from "./components/VCheckbox.vue"
import InputWrapper from "./components/InputWrapper.vue"
2023-12-09 15:47:03 +01:00
export default {
name: "CheckboxInput",
2023-12-09 15:47:03 +01:00
components: { InputWrapper, VCheckbox },
props: {
...inputProps,
2023-12-09 15:47:03 +01:00
},
setup(props, context) {
2023-12-09 15:47:03 +01:00
return {
...useFormInput(props, context),
2023-12-09 15:47:03 +01:00
}
},
mounted() {
if (!this.compVal) {
this.compVal = false
}
},
2023-12-09 15:47:03 +01:00
}
</script>