vue中的:__ob__: Observer【数组和对象的转化】

 //第一种
Object.assign({},this.data)+Object.assign({},this.data)

//第二种
JSON.parse(JSON.stringify(this.data))

 若果第一种、第二种都不好使的话

建议在mouted 函数里面调用的时间加延时

setTimeout(()=>{
                //this.open(this.treeRow);
        },800)

你可能感兴趣的:(vue,vue.js,前端,javascript)