美文网首页
03_04.组件销毁生命周期函数

03_04.组件销毁生命周期函数

作者: Robyn_Luo | 来源:发表于2017-11-14 19:22 被阅读0次
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>Document</title>
    </head>
    <body>
        <main id="app">
            <app-header v-if="headerIsShow"></app-header>
            <button @click="changeHeader">显示隐藏header</button>
        </main>
    
        <script src="vue.js"></script>
        <script>
            Vue.component('app-header', {
                template: `<header>{{ tit }}</header>`,
                data: function() {
                    return {
                        tit: '标题',
                        timer: null
                    };
                },
    
                // 数据可以使用了
                created: function() {
                    this.timer = setInterval(function() {
                        console.log('你好!');
                    }, 1000);
                },
    
                // 组件销毁前执行
                beforeDestroy: function() {
                    console.log('beforeDestory');
                    console.log(document.querySelector('header'));
                },
    
                // !!重点!!
                // 组件销毁后执行, 同时数据绑定也失效了
                destroyed: function() {
                    clearInterval(this.timer);
                    console.log('destoryed');
                    console.log(document.querySelector('header'));
                }
            });
    
            var vm = new Vue({
                el: '#app',
                data: {
                    headerIsShow: true
                },
                methods: {
                    changeHeader: function() {
                        this.headerIsShow = !this.headerIsShow;
                    }
                }
            });
        </script>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:03_04.组件销毁生命周期函数

          本文链接:https://www.haomeiwen.com/subject/ppnfvxtx.html