vue3.0 学习
Posted tutao1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue3.0 学习相关的知识,希望对你有一定的参考价值。
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 学习的主要内容,如果未能解决你的问题,请参考以下文章