index.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <view>
  3. <slot />
  4. </view>
  5. </template>
  6. <script>
  7. 'use strict';
  8. Object.defineProperty(exports, '__esModule', {
  9. value: true
  10. });
  11. var component_1 = require('../common/component');
  12. component_1.VantComponent({
  13. field: true,
  14. relation: {
  15. name: 'radio',
  16. type: 'descendant',
  17. current: 'radio-group',
  18. linked: function (target) {
  19. this.updateChild(target);
  20. }
  21. },
  22. props: {
  23. value: {
  24. type: null,
  25. observer: 'updateChildren'
  26. },
  27. disabled: {
  28. type: Boolean,
  29. observer: 'updateChildren'
  30. }
  31. },
  32. methods: {
  33. updateChildren: function () {
  34. var that = this;
  35. (this.children || []).forEach(function (child) {
  36. return that.updateChild(child);
  37. });
  38. },
  39. updateChild: function (child) {
  40. var _a = this;
  41. var value = _a.value;
  42. var disabled = _a.disabled;
  43. child.setData({
  44. value: value,
  45. disabled: disabled || child.data.disabled
  46. });
  47. }
  48. }
  49. });
  50. </script>
  51. <style>
  52. @import './index.css';
  53. </style>