mounted () {
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
},
若使用的框架是vant-ui ,且弹窗使用的是组件中的van-dialog,禁用手机系统返回按钮作用可使用如下属性:
<van-dialog :close-on-popstate ="false" > </van-dialog>
// close-on-popstate 是否在页面回退时自动关闭 默认是true