index.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <template>
  2. <view>
  3. <slot />
  4. </view>
  5. </template>
  6. <script>
  7. import { VantComponent } from '../common/component';
  8. export default {
  9. data() {
  10. return {
  11. valueClone: '',
  12. disabledClone: false
  13. };
  14. },
  15. field: true,
  16. '../radio/index': {
  17. name: 'radio',
  18. type: 'descendant',
  19. current: 'radio-group',
  20. linked(target) {
  21. this.updateChild(target);
  22. }
  23. },
  24. props: {
  25. value: {
  26. type: null
  27. },
  28. disabled: {
  29. type: Boolean
  30. }
  31. },
  32. methods: {
  33. updateChildren() {
  34. (this.children || []).forEach((child) => this.updateChild(child));
  35. },
  36. updateChild(child) {
  37. const { valueClone: value, disabledClone: disabled } = this;
  38. child.setData({
  39. valueClone: value,
  40. disabledClone: disabled || child.data.disabled
  41. });
  42. }
  43. },
  44. watch: {
  45. value: {
  46. handler: function () {
  47. this.valueClone = this.clone(this.value)(this.children || []).forEach((child) => this.updateChild(child));
  48. },
  49. immediate: true
  50. },
  51. disabled: {
  52. handler: function () {
  53. this.disabledClone = this.clone(this.disabled)(this.children || []).forEach((child) => this.updateChild(child));
  54. },
  55. immediate: true
  56. }
  57. }
  58. };
  59. </script>
  60. <style>
  61. @import './index.css';
  62. </style>