Vue3中新增API的见解

1. 组件API按需引入

import { ref, toRef, toRefs, computed, watch, getCurrentInstance, reactive, component, onMounted } from 'vue'

2. setup执行时机与注意点

  • setup执行时机在beforeCreate之前
  • setup中是不能使用datamethods,因为还没初始化好
  • 由于不能再setup函数中使用datamethods,所以Vue为了避免我们错误的使用,它直接将setup
    函数中的this修改成undefined.
  • setup只能同步,不能异步
  • setup中定义的数据需要return后才能被模板使用
//  Vue3中可以创建多个根节点