beforeDestroy()

实例销毁前,数据实例方法都有但是没什么用

  Vue.component('son', {
    template: '#son',
    data() {
      return {
        num: 4
      }
    },
    mounted() {
      this.timmer= setInterval(() => {
        console.log(1)
      }, 1000);
    },
    beforeDestroy() {

      console.log(this)
      console.log(this.num)
      console.log(this.$refs.p)
    },

  })

  new Vue({
    data: {
      show: true,
    },
    methods: {
      toggle() {
        this.show = !this.show
      }
    }
  }).$mount('#app')

destroyed()

实例销毁后,用于清除定时器、网络请求等还未结束的操作


  Vue.component('son', {
    template: '#son',
    data() {
      return {
        num: 4
      }
    },
    mounted() {
      this.timmer= setInterval(() => {
        console.log(1)
      }, 1000);
    },

    destroyed() {

      clearInterval(this.timmer)
      console.log('销毁结束')
      console.log(this)
      console.log(this.num)
      console.log(this.$refs.p)
    }
  })

  new Vue({
    data: {
      show: true,
    },
    methods: {
      toggle() {
        this.show = !this.show
      }
    }
  }).$mount('#app')

Logo

前往低代码交流专区

更多推荐