vue3 createComponent
- 这个函数不是必须的,除非你想要完美结合 TypeScript 提供的类型推断来进行项目的开发。
- 这个函数仅仅提供了类型推断,方便在结合 TypeScript 书写代码时,能为 setup() 中的 props 提供完整的类型推断。
import { createComponent } from 'vue'export default createComponent({
props: {
foo: String
},
setup(props) {
props.foo // <- type: string
}
})
以上是 vue3 createComponent 的全部内容, 来源链接: utcz.com/z/378611.html