其他分享
首页 > 其他分享> > vue3 基础-生命周期函数

vue3 基础-生命周期函数

作者:互联网

在 vue 中, 生命周期函数可理解为 "在某个时刻, 会自动执行的函数". 先直观感受一下图示.


一共就八个:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>vue 生命周期函数</title>
  <script src="./js/vue@3.2.23.js"></script>
</head>

<body>
  <div id="root"></div>
</body>
<script>
  // 生命周期函数: 在某一个时刻会自动执行的函数
  const app = Vue.createApp({
    data() {
      return {
        message: 'hello world'
      }
    },
    methods: {
      handleItemClick() {
        alert('click');
      }
    },
    // 1. 在实例生成之前
    beforeCreate() {
      console.log('beforCreate');
    },
    // 2. 在实例生成之后
    created() {
      console.log('created');
    },
    // 3. 在组件内容被渲染到页面之前
    beforeMount() {
      console.log(document.getElementById('root').innerHTML, 'beforMount');
    },
    // 4. 在组件内容被渲染到页面之后
    mounted() {
      console.log(document.getElementById('root').innerHTML, 'mounted');;
    },
    // 5. 当 data 中的数据发生变化时, 会立即自动执行
    beforeUpdate() {
      console.log(document.getElementById('root').innerHTML, 'beforeUpdate');;

    },
    // 6. 当 data 中的数据发生变化, 页面重新渲染后后执行
    updated() {
      console.log(document.getElementById('root').innerHTML, 'updated');
    },
    // 7. 当 Vue 应用失效时, 自动执行的函数
    beforeUnmount() {
      console.log('beforUnmount');
    },
    // 8. 当 Vue 应用失效时, 且dom完全销毁的时候
    unmounted() {
      console.log('unmounted');
    },
    template: `<div v-on:click=handleItemClick>{{message}}</div>`
  })

  const vm = app.mount('#root');
</script>

</html>

再来重复一遍吧, 这个也是重在理解和能基本使用即可, 没有什么技巧的.

标签:生命,console,log,root,周期函数,vue3,执行,data,页面
来源: https://www.cnblogs.com/chenjieyouge/p/16626166.html