frontend
Handle broswer back event
2020/03/18 0

popstate event in Vue only triggers when history.pushState(null, null, document.URL); is called ==> need more prove

 if (window.history && window.history.pushState) {
        // 向历史记录中插入了当前页
        history.pushState(null, null, document.URL);
        window.addEventListener('popstate', this.goBack, false);
    }