Skip to content

Commit

Permalink
您 -> 你 (#1044)
Browse files Browse the repository at this point in the history
Co-authored-by: Ayaka <[email protected]>
  • Loading branch information
KiritaniAyaka and KiritaniAyaka authored Nov 13, 2024
1 parent 15c7678 commit ee46337
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/api/sfc-script-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@ defineProps<{
</script>
```

`generic` 的值与 TypeScript 中位于 `<...>` 之间的参数列表完全相同。例如,您可以使用多个参数`extends` 约束,默认类型和引用导入的类型:
`generic` 的值与 TypeScript 中位于 `<...>` 之间的参数列表完全相同。例如,你可以使用多个参数`extends` 约束,默认类型和引用导入的类型:

```vue
<script
Expand Down
2 changes: 1 addition & 1 deletion src/guide/typescript/composition-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const props = defineProps<Props>()

在 3.2 及以下版本中,`defineProps()` 的泛型类型参数仅限于类型字面量或对本地接口的引用。

这个限制在 3.3 中得到了解决。最新版本的 Vue 支持在类型参数位置引用导入和有限的复杂类型。但是,由于类型到运行时转换仍然基于 AST,一些需要实际类型分析的复杂类型,例如条件类型,还未支持。您可以使用条件类型来指定单个 prop 的类型,但不能用于整个 props 对象的类型。
这个限制在 3.3 中得到了解决。最新版本的 Vue 支持在类型参数位置引用导入和有限的复杂类型。但是,由于类型到运行时转换仍然基于 AST,一些需要实际类型分析的复杂类型,例如条件类型,还未支持。你可以使用条件类型来指定单个 prop 的类型,但不能用于整个 props 对象的类型。

### Props 解构默认值 {#props-default-values}

Expand Down

0 comments on commit ee46337

Please sign in to comment.