1、setup在beforCreate之前执行,此时this为undefined
2、setup的参数:props值为对象包含组件外部传递过来并且组建内部声明接收了的属性
context上下文对象
attrs值为对象包含组件外部传递过来但是没有在props配置中声明的属性,相当于this.$attrs
slots收到插槽的内容,相当于this.$slots
emit分发自定义事件的函数,相当于this.$emit
1、setup在beforCreate之前执行,此时this为undefined
2、setup的参数:props值为对象包含组件外部传递过来并且组建内部声明接收了的属性
context上下文对象
attrs值为对象包含组件外部传递过来但是没有在props配置中声明的属性,相当于this.$attrs
slots收到插槽的内容,相当于this.$slots
emit分发自定义事件的函数,相当于this.$emit