0

我正在使用 SFC 和带有 Vue3(和打字稿)的设置脚本,我似乎无法创建一个嵌套数组的道具:

const props = defineProps({
    title: String,
    desc: String,
    columns: Array<Array<String>>,
});
4

1 回答 1

0

答案在https://vuejs.org/api/sfc-script-setup.html#typescript-only-features

打字稿的语法不同:

const props = defineProps<{
  foo: string
  bar?: number
}>()
于 2022-02-12T03:37:58.773 回答