vue生命周期:
首先会执行 setup 语法糖,然后才执行下面的生命周期
1、创建前/后:beforeCreate/created
2、渲染(挂载)前/后:beforeMount/mounted
3、更新前/后:beforeUpdate/updated
4、销毁前/后:beforeUnmount/unmounted
首先会执行 setup 语法糖,然后才执行下面的生命周期
1、创建前/后:beforeCreate/created
2、渲染(挂载)前/后:beforeMount/mounted
3、更新前/后:beforeUpdate/updated
4、销毁前/后:beforeUnmount/unmounted