jp-checkbox-group.vue 347 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <checkbox-group @change="CheckboxChange">
  3. <slot></slot>
  4. </checkbox-group>
  5. </template>
  6. <script>
  7. export default {
  8. props: {
  9. value: Array,
  10. disabled: {
  11. type: Boolean,
  12. default: false
  13. }
  14. },
  15. methods:{
  16. CheckboxChange(evt) {
  17. this.$emit('input', evt.detail.value)
  18. },
  19. }
  20. }
  21. </script>
  22. <style>
  23. </style>