소스 검색

RadioGroup: fix RadioGroup used in component causes exception #17908 (#20783)

lichao 4 년 전
부모
커밋
960bbcb562
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. 3 1
      packages/radio/src/radio-group.vue

+ 3 - 1
packages/radio/src/radio-group.vue

@@ -43,7 +43,9 @@
         return (this.elFormItem || {}).elFormItemSize;
       },
       _elTag() {
-        return (this.$vnode.data || {}).tag || 'div';
+        let tag = (this.$vnode.data || {}).tag;
+        if (!tag || tag === 'component') tag = 'div';
+        return tag;
       },
       radioGroupSize() {
         return this.size || this._elFormItemSize || (this.$ELEMENT || {}).size;