企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
1.PropType 为构造函数指定类型,为 props指定类型 ~~~ import { defineComponent, PropType } from 'vue' interface IConfig { name: string } export default defineComponent({ name: 'App', props: { age: { type: Number as PropType<number>, // 视为 ts 的类型 number }, config: { type: Object as PropType<IConfig>, }, } }) ~~~