limitation.vue 387 B

123456789101112
  1. <template>
  2. <el-checkbox-group v-model="checkedCities" :min="1" :max="2">
  3. <el-checkbox v-for="city in cities" :key="city" :label="city">{{ city }}</el-checkbox>
  4. </el-checkbox-group>
  5. </template>
  6. <script lang="ts" setup>
  7. import { ref } from 'vue'
  8. const checkedCities = ref(['Shanghai', 'Beijing'])
  9. const cities = ['Shanghai', 'Beijing', 'Guangzhou', 'Shenzhen']
  10. </script>