File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -252,7 +252,7 @@ const Select = {
252
252
class : cls ,
253
253
ref : 'vcSelect' ,
254
254
} ;
255
- return < VcSelect { ...selectProps } __propsSymbol__ = { Symbol ( ) } /> ;
255
+ return < VcSelect { ...selectProps } __propsSymbol__ = { [ ] } /> ;
256
256
} ,
257
257
} ;
258
258
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default {
57
57
...lazy ,
58
58
} ;
59
59
children = (
60
- < Lazyload { ...lazyProps } _propsSymbol = { Symbol ( ) } >
60
+ < Lazyload { ...lazyProps } _propsSymbol = { [ ] } >
61
61
{ listItem }
62
62
</ Lazyload >
63
63
) ;
Original file line number Diff line number Diff line change @@ -195,7 +195,7 @@ const TreeSelect = {
195
195
< VcTreeSelect
196
196
{ ...VcTreeSelectProps }
197
197
vSlots = { omit ( this . $slots , [ 'default' ] ) }
198
- __propsSymbol__ = { Symbol ( ) }
198
+ __propsSymbol__ = { [ ] }
199
199
/>
200
200
) ;
201
201
} ,
Original file line number Diff line number Diff line change @@ -219,6 +219,6 @@ export default {
219
219
if ( treeData ) {
220
220
vcTreeProps . treeData = treeData ;
221
221
}
222
- return < VcTree { ...vcTreeProps } __propsSymbol__ = { Symbol ( ) } /> ;
222
+ return < VcTree { ...vcTreeProps } __propsSymbol__ = { [ ] } /> ;
223
223
} ,
224
224
} ;
Original file line number Diff line number Diff line change @@ -193,6 +193,6 @@ export default {
193
193
children : newChildren ,
194
194
ref : this . innerSliderRefHandler ,
195
195
} ;
196
- return < InnerSlider { ...sliderProps } vSlots = { this . $slots } __propsSymbol__ = { Symbol ( ) } /> ;
196
+ return < InnerSlider { ...sliderProps } vSlots = { this . $slots } __propsSymbol__ = { [ ] } /> ;
197
197
} ,
198
198
} ;
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ const BasePopup = {
270
270
onExpand : this . onTreeExpand ,
271
271
onLoad : this . onLoad ,
272
272
} ;
273
- $tree = < Tree { ...treeAllProps } ref = { this . treeRef } __propsSymbol__ = { Symbol ( ) } /> ;
273
+ $tree = < Tree { ...treeAllProps } ref = { this . treeRef } __propsSymbol__ = { [ ] } /> ;
274
274
}
275
275
276
276
return (
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ const SinglePopup = {
73
73
renderSearch : this . _renderSearch ,
74
74
} }
75
75
ref = { this . popupRef }
76
- __propsSymbol__ = { Symbol ( ) }
76
+ __propsSymbol__ = { [ ] }
77
77
/>
78
78
) ;
79
79
} ,
Original file line number Diff line number Diff line change @@ -1091,7 +1091,7 @@ const Select = {
1091
1091
} ;
1092
1092
1093
1093
const Popup = isMultiple ? MultiplePopup : SinglePopup ;
1094
- const $popup = < Popup { ...popupProps } __propsSymbol__ = { Symbol ( ) } /> ;
1094
+ const $popup = < Popup { ...popupProps } __propsSymbol__ = { [ ] } /> ;
1095
1095
1096
1096
const Selector = isMultiple ? MultipleSelector : SingleSelector ;
1097
1097
const $selector = < Selector { ...passProps } ref = { this . selectorRef } /> ;
You can’t perform that action at this time.
0 commit comments