左侧目录树点击时同步目录树名称
试了很多方法
layer.title('新标题',index)不知道为啥不行
最后用了获取html树来修改了
watch: {
'$store.state.nowTreePath': function(newVal, oldVal) {
if (document.querySelectorAll(".lv-title") && document.querySelectorAll(".lv-title").length>1) {
document.querySelectorAll(".lv-title")[1].innerText= `导入${this.nameObj[this.pageType]}-${newVal}`
}
}
}