limitation.vue 389 B

1234567891011121314
  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">{{
  4. city
  5. }}</el-checkbox>
  6. </el-checkbox-group>
  7. </template>
  8. <script lang="ts" setup>
  9. import { ref } from 'vue'
  10. const checkedCities = ref(['Shanghai', 'Beijing'])
  11. const cities = ['Shanghai', 'Beijing', 'Guangzhou', 'Shenzhen']
  12. </script>