修复菜单主类目不能被选择问题
This commit is contained in:
parent
a036b5a124
commit
18004588ed
|
@ -82,7 +82,7 @@ const defaultExpandedKey = ref([]);
|
|||
function initHandle() {
|
||||
nextTick(() => {
|
||||
const selectedValue = valueId.value;
|
||||
if(selectedValue && selectedValue !== null && typeof (selectedValue) !== "undefined"){
|
||||
if(selectedValue !== null && typeof (selectedValue) !== 'undefined') {
|
||||
const node = proxy.$refs.selectTree.getNode(selectedValue)
|
||||
if (node) {
|
||||
valueTitle.value = node.data[props.objMap.label]
|
||||
|
|
Loading…
Reference in New Issue