Vue3.x
屋顶上的小喵
做好自己,但行好事,不渡他人...
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Vue3.x 版本的生命周期钩子函数
setup() 开始创建组件之前,在beforeCreate和created之前执行。创建的是data和method //必须先引用再使用 import {onBeforeMount,onMounted,onUpdated,onBeforeUnmoun,onUnmounted} from 'vue' //组件挂载到节点上之前执行的函数 onBeforeMount() //组件挂载完成后执行的函数 onMounted() //组件更新之前执行 onBeforeUpdate(...原创 2020-11-08 15:56:23 · 8164 阅读 · 0 评论 -
在vscode 快速创建代码片段 之 vue3.x(自用供参考)
{ // Place your snippets for vue here. Each snippet is defined under a snippet name and has a prefix, body and // description. The prefix is what is used to trigger the snippet and the body will be expanded and inserted. Possible variables are: //...原创 2020-11-08 11:58:21 · 2758 阅读 · 1 评论
分享