Skip to content
This repository was archived by the owner on Aug 8, 2022. It is now read-only.

Commit 5335a08

Browse files
committed
update: translate new
1 parent 8815ae3 commit 5335a08

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/guide/migration/custom-elements-interop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ badges:
99

1010
- **非兼容**:自定义元素白名单现在在模板编译期间执行,应该通过编译器选项而不是运行时配置来配置。
1111
- **非兼容**:特定 `is` prop 用法仅限于保留的 `<component>` 标记。
12-
- ****:有了新的 `v-is` 指令来支持 2.x 用例,其中在原生元素上使用了 `v-is` 来处理原生 HTML 解析限制。
12+
- **新增**:有了新的 `v-is` 指令来支持 2.x 用例,其中在原生元素上使用了 `v-is` 来处理原生 HTML 解析限制。
1313

1414
## 自主定制元素
1515

src/guide/migration/key-attribute.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ badges:
77

88
## 概览
99

10-
- ****:对于 `v-if`/`v-else`/`v-else-if` 的各分支项 `key` 将不再是必须的,因为现在 Vue 会自动生成唯一的 `key`
10+
- **新增**:对于 `v-if`/`v-else`/`v-else-if` 的各分支项 `key` 将不再是必须的,因为现在 Vue 会自动生成唯一的 `key`
1111
- **非兼容**:如果你手动提供 `key`,那么每个分支必须使用唯一的 `key`。你不能通过故意使用相同的 `key` 来强制重用分支。
1212
- **非兼容**`<template v-for>``key` 应该设置在 `<template>` 标签上 (而不是设置在它的子节点上)。
1313

src/guide/migration/v-model.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ badges:
1414
- prop:`value` -> `modelValue`
1515
- event:`input` -> `update:modelValue`
1616
- **非兼容**`v-bind``.sync` 修饰符和组件的 `model` 选项已移除,可用 `v-model` 作为代替;
17-
- ****:现在可以在同一个组件上使用多个 `v-model` 进行双向绑定;
18-
- ****:现在可以自定义 `v-model` 修饰符。
17+
- **新增**:现在可以在同一个组件上使用多个 `v-model` 进行双向绑定;
18+
- **新增**:现在可以自定义 `v-model` 修饰符。
1919

2020
更多信息,请见下文。
2121

0 commit comments

Comments
 (0)