我正在使用 SFC 和带有 Vue3(和打字稿)的设置脚本,我似乎无法创建一个嵌套数组的道具:
const props = defineProps({
title: String,
desc: String,
columns: Array<Array<String>>,
});
答案在https://vuejs.org/api/sfc-script-setup.html#typescript-only-features
打字稿的语法不同:
const props = defineProps<{
foo: string
bar?: number
}>()