vue3 —— setup 的执行时机 与 参数

setup 的两个注意点:

 - setup 执行的时机:

   - 在 beforeCreate 之前执行一次, this是 undefined

 - setup 的参数

   - props:值为对象,包含:组件外部传递过来,且组件内部生命接收了的属性

   - context:上下文对象

     - attrs:值为对象,包含:组件外部传递过来,但没有在 props 配置中声明的属性,相当于 this.$attrs

     - slots:收到的插槽内容,相当于 this.$slots

     - emit:分发自定义事件的函数,相当于 this.$emit

posted @ 2022-01-27 00:03  我就尝一口  阅读(287)  评论(0编辑  收藏  举报