vue 监听返回
Posted linjiangxian
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 监听返回相关的知识,希望对你有一定的参考价值。
mounted: function() //使用keep-alive时可以放在activated内 if (window.history && window.history.pushState) history.pushState(null, null, document.URL); window.addEventListener(‘popstate‘, this.listenBack, false); , methods: listenBack() if (true) //必须有,否则可能无法关闭 //这个可以关闭安卓系统的手机 document.addEventListener(‘WeixinJSBridgeReady‘, function()
WeixinJSBridge.call(‘closeWindow‘);, false); //这个可以关闭ios系统的手机,顺序不能改变 WeixinJSBridge.call(‘closeWindow‘); , beforeRouteLeave(to, from, next) window.removeEventListener(‘popstate‘, this.listenBack, false);
以上是关于vue 监听返回的主要内容,如果未能解决你的问题,请参考以下文章