根据旧函数 rfc,Vue3 将支持 typescript only props -typing:https ://github.com/vuejs/rfcs/blob/function-apis/active-rfcs/0000-function-api.md#typescript-only-道具打字
当我尝试遵循代码时,它似乎不起作用。道具将是未定义的。
interface MessageProps {
msg: string;
list: any[];
}
export default defineComponent({
name: 'HelloWorld',
setup(props: MessageProps) {
console.log(props)
}
})