tiny-vue_version0/examples/sites/demos/pc/app/checkbox/checkbox-group-composition-...

14 lines
396 B
Vue

<template>
<tiny-checkbox-group v-model="checked">
<tiny-checkbox label="复选框1"></tiny-checkbox>
<tiny-checkbox label="复选框2"></tiny-checkbox>
</tiny-checkbox-group>
</template>
<script setup>
import { ref } from 'vue'
import { Checkbox as TinyCheckbox, CheckboxGroup as TinyCheckboxGroup } from '@opentiny/vue'
const checked = ref(['复选框1', '复选框2'])
</script>