fix: treeNode dataRef is undefined
parent
f66fae47e3
commit
5f9ebe8b45
|
@ -134,7 +134,8 @@ const TreeSelect = {
|
||||||
|
|
||||||
const clearIcon = <Icon type="close-circle" class={`${prefixCls}-clear-icon`} theme="filled" />;
|
const clearIcon = <Icon type="close-circle" class={`${prefixCls}-clear-icon`} theme="filled" />;
|
||||||
const VcTreeSelectProps = {
|
const VcTreeSelectProps = {
|
||||||
props: {
|
props: Object.assign(
|
||||||
|
{
|
||||||
switcherIcon: nodeProps => this.renderSwitcherIcon(prefixCls, nodeProps),
|
switcherIcon: nodeProps => this.renderSwitcherIcon(prefixCls, nodeProps),
|
||||||
inputIcon,
|
inputIcon,
|
||||||
removeIcon,
|
removeIcon,
|
||||||
|
@ -148,6 +149,8 @@ const TreeSelect = {
|
||||||
notFoundContent: notFoundContent || renderEmpty(h, 'Select'),
|
notFoundContent: notFoundContent || renderEmpty(h, 'Select'),
|
||||||
__propsSymbol__: Symbol(),
|
__propsSymbol__: Symbol(),
|
||||||
},
|
},
|
||||||
|
treeData ? { treeData } : {},
|
||||||
|
),
|
||||||
class: cls,
|
class: cls,
|
||||||
on: { ...this.$listeners, change: this.onChange },
|
on: { ...this.$listeners, change: this.onChange },
|
||||||
ref: 'vcTreeSelect',
|
ref: 'vcTreeSelect',
|
||||||
|
|
Loading…
Reference in New Issue