欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

VUE3组件运行生命周期

程序员文章站 2022-03-06 13:46:03
...

VUE3组件运行生命周期

  1. <template>
  2. <div>
  3. {{msg}}
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'btu',
  9. data(){
  10. return{
  11. msg:'主键'
  12. }
  13. },
  14. beforeCreate() {
  15. console.log('1在创建组件之前调用运行')
  16. },
  17. created() {
  18. console.log('2组件已经创建完成运行')
  19. },
  20. beforeMount() {
  21. console.log('3在模板挂在之前运行')
  22. },
  23. mounted() {
  24. console.log('4在模板挂完成以后运行')
  25. },
  26. beforeUpdate() {
  27. console.log('5在内容有改变之前运行')
  28. },
  29. updated() {
  30. console.log('6在数据改变完以后运行')
  31. },
  32. beforeUnmount() {
  33. console.log('7在组件销毁之前运行')
  34. },
  35. unmounted() {
  36. console.log('8组件销毁后执行')
  37. },
  38. activated() {
  39. console.log('缓存组件,激活时调用')
  40. },
  41. deactivated() {
  42. console.log('缓存组件,停用时调用')
  43. },
  44. setup(){
  45. console.log('只执行一次')
  46. }
  47. }
  48. </script>
  49. <style scoped lang="scss">
  50. </style>