码迷,mamicode.com
首页 > 其他好文 > 详细

vue3.0 学习

时间:2020-06-04 18:02:41      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:需要   函数   pre   div   vue   remount   error   upd   bsp   

1.Composition API   

  1.新增setup()  执行时间是在以前 beforeCreate 和 created 之间

  2.生命周期以及其他vue的函数的使用需要按需引用

import { onBeforeMount, onMounted, onBeforeUpdate, onUpdated, onBeforeUnmount, onUnmounted, onActivated, onDeactivated, onErrorCaptured } from ‘vue‘

export default {
  setup() {
    onBeforeMount(() => {
      // ... 
    })
    onMounted(() => {
      // ... 
    })
    onBeforeUpdate(() => {
      // ... 
    })
    onUpdated(() => {
      // ... 
    })
    onBeforeUnmount(() => {
      // ... 
    })
    onUnmounted(() => {
      // ... 
    })
    onActivated(() => {
      // ... 
    })
    onDeactivated(() => {
      // ... 
    })
    onErrorCaptured(() => {
      // ... 
    })
  }
}

 

  

vue3.0 学习

标签:需要   函数   pre   div   vue   remount   error   upd   bsp   

原文地址:https://www.cnblogs.com/tutao1995/p/13045091.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!