摘要:
工具方法:getStringlength.js // 统计输入字符长度 export const getStringLength = str => { let totalLength = 0 if (str) { const list = str.split('') for (let i = 0; 阅读全文
摘要:
设置选中指定节点: this.$refs.treeRef.setCurrentKey('要设置节点对应的id'); 通常我们在设置完选中的节点的时候要触发这个节点的node-click事件,显示该节点对应的详情信息,要想调用handleClick事件,我们需要用: let node = this.$ 阅读全文