1. 程式人生 > >vue 關閉瀏覽器視窗的時候,清空localStorage的資料

vue 關閉瀏覽器視窗的時候,清空localStorage的資料

如果是用vue做的單頁面程式的時候,將監聽的方法放在App.vue是最靈活的

<template>
    <div id="main" class="app-main">
        <router-view></router-view>
    </div>
</template>

<script>
    export default {
        data () {
            return {
                theme: this.$store.state.app.themeColor
            };
        },
        mounted () {

        },
        beforeDestroy () {

        },
        methods: {

        },
        mounted(){
            // 關閉瀏覽器視窗的時候清空瀏覽器快取在localStorage的資料
            window.onbeforeunload = function (e) {
                var storage = window.localStorage;
                storage.clear()
            }
        }


    };
</script>

<style>
html,body{
    width: 100%;
    height: 100%;
    background: #f0f0f0;
    overflow: hidden;
}
.app-main{
    width: 100%;
    height: 100%;
}
</style>

二、如果是多頁面的程式的話,在每一個頁面同理只要在mounted方法中,註冊這個事件即可!