| <template> |
| <span> |
| <div :class="'form-check' + (toggle ? ' form-switch' : '')"> |
| <input |
| class="form-check-input" |
| type="checkbox" |
| :title="text" |
| :disabled="disabled" |
| @input="handleInput" |
| :checked="modelValue" |
| :id="id" |
| :role="toggle ? 'switch' : ''" |
| /> |
| <label v-if="text !== ''" :for="id" class="form-check-label"> |
| {{ text }} |
| </label> |
| </div> |
| <FormElementDescription |
| :description="description" |
| ></FormElementDescription> |
| </span> |
| </template> |
|
|
| <script lang="ts"> |
| import { Options, Vue } from "vue-class-component"; |
| import { Prop } from "vue-property-decorator"; |
| import FormElementDescription from "./FormElementDescription.vue"; |
|
|
| |
| * FormCheckBox component |
| */ |
| @Options({ |
| components: { |
| FormElementDescription, |
| }, |
| }) |
| export default class FormCheckBox extends Vue { |
| @Prop({ required: true }) modelValue!: boolean; |
|
|
| @Prop({ required: true }) id!: string; |
| @Prop({ default: "" }) text!: string; |
| @Prop({ default: false }) disabled!: boolean; |
| @Prop({ default: false }) toggle!: boolean; |
| @Prop() description!: string; |
|
|
| |
| * Let the parent component know of any changes. |
| * |
| * @param {any} e The value. |
| */ |
| handleInput(e: any) { |
| this.$emit("update:modelValue", e.target.checked); |
|
|
| |
| |
| this.$emit("onChange"); |
| } |
| } |
| </script> |
|
|
| |
| <style lang="scss"></style> |
| |