demo5.vue 686 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <m-checkbox-group v-model="checkboxGroup1">
  4. <m-checkbox-button v-for="city in cities" :label="city" :key="city">
  5. {{city}}
  6. </m-checkbox-button>
  7. </m-checkbox-group>
  8. </div>
  9. <div style="margin-top: 20px;">
  10. <m-checkbox-group v-model="checkboxGroup2">
  11. <m-checkbox-button v-for="city in cities" :label="city" :key="city" :disabled="city === '北京'">
  12. {{city}}
  13. </m-checkbox-button>
  14. </m-checkbox-group>
  15. </div>
  16. </template>
  17. <script setup>
  18. import { ref } from 'vue-demi'
  19. const checkboxGroup1 = ref(['上海'])
  20. const checkboxGroup2 = ref(['上海'])
  21. const cities = ['上海', '北京', '广州', '深圳']
  22. </script>