AIoT前端公共UI

CheckGroup.vue 461B

    <template> <el-checkbox-group> <el-checkbox v-for="(option, index) in options" :key="index" :label="option?.['value']" > {{ option?.['label'] }} </el-checkbox> </el-checkbox-group> </template> <script setup lang="ts"> defineProps({ options: { type: Array<any>, default: () => [] } }); </script> <script lang="ts"> export default { name: 'CommonCheckGroup' }; </script> <style scoped lang="scss"></style>