黃色部分為需要在瀏覽器返回時觸發的方法,這里需要做的是在瀏覽器返回時把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; },