2022
04-06
04-06
浅谈Vue3 defineComponent有什么作用
目录defineComponent重载函数开发实践defineComponent函数,只是对setup函数进行封装,返回options的对象;exportfunctiondefineComponent(options:unknown){returnisFunction(options)?{setup:options}:options}defineComponent最重要的是:在TypeScript下,给予了组件正确的参数类型推断。defineComponent重载函数1:directsetupfunction//overload1:directsetupfunction//(usesuserdefinedprops...
继续阅读 >