其他分享
首页 > 其他分享> > Vue3 defineComponent的作用

Vue3 defineComponent的作用

作者:互联网

defineComponent函数,只是对setup函数进行封装,返回options的对象 

export function defineComponent(options: unknown) {
  return isFunction(options) ? { setup: options } : options
}

defineComponent最重要的是:在TS下,给予了组件 正确的参数类型推断 

   

搜索

 

 

 

 

 

 

复制

<iframe></iframe>

标签:函数,setup,defineComponent,export,Vue3,isFunction,options,作用
来源: https://www.cnblogs.com/llive/p/16395964.html