1、首先先看一下效果图:

2、实现步骤

(1)在项目中打开想要出现如上效果的组件的vue文件

(2)在script标签中写如下代码,但是记得要替换成自己的路由

<script>
export default {
    mounted () {
        let that = this
        window.onbeforeunload = function (e) {
            if(that.$route.fullPath =="/rich"){  // 注意这里要替换成自己的当前页面的路由
                e = e || window.event;
                // 兼容IE8和Firefox 4之前的版本
                if (e) {
                    e.returnValue = '关闭提示';
                }
                // Chrome, Safari, Firefox 4+, Opera 12+ , IE 9+
                return '关闭提示';
            } else {
                window.onbeforeunload = null
            }
        };
    }
}
</script>

(3)保存好代码后刷新一下页面,即可看到效果。

 

 

 

 

 

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐