黄色部分为需要在浏览器返回时触发的方法,这里需要做的是在浏览器返回时把dialog关闭
1 mounted() { 2 this.createTree(); 3 if (window.history && window.history.pushState) { 4 history.pushState(null, null, document.URL); 5 window.addEventListener("popstate", this.onCloseModal, false); 6 } 7 },
1 destroyed() { 2 window.removeEventListener("popstate", this.onCloseModal, false); 3 },
onCloseModal() { this.showEditModal = null; },