FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
v3
/
src
/
views
/
common
/
FormFields
Edit File: AmCheckboxFormField.vue
<template> <el-form-item ref="formFieldRef" class="am-ff__item" :prop="props.itemName" :label-position="props.labelPosition" > <template #label> <span class="am-ff__item-label" v-html="props.label" /> </template> <AmCheckboxGroup v-model="model" > <AmCheckbox v-for="(option, i) in props.options" :key="i" :label="option.label" :value="option.value" /> </AmCheckboxGroup> </el-form-item> </template> <script setup> // * _components import AmCheckboxGroup from '../../_components/checkbox/AmCheckboxGroup.vue' import AmCheckbox from '../../_components/checkbox/AmCheckbox.vue' // * Import from Vue import { computed, ref, toRefs } from "vue"; // * Form Item Props let props = defineProps({ modelValue: { type: [String, Array, Object, Number], required: true }, itemName: { type: String, required: true }, label: { type: String }, labelPosition: { type: String, default: 'top' }, options: { type: Array, } }) // * Define Emits const emits = defineEmits(['update:modelValue']) // * Component model let { modelValue } = toRefs(props) let model = computed({ get: () => modelValue.value, set: (val) => { emits('update:modelValue', val) } }) // * Form Item Reference let formFieldRef = ref(null) defineExpose({ formFieldRef }) </script> <script> export default { name: "CheckboxFormField" } </script>
Save
Back