Skip to content

Commit 6002041

Browse files
committed
Fix v-model links
1 parent f6ac62f commit 6002041

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/breaking-changes/v-model.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ In addition to 2.x hard-coded `v-model` modifiers like `.trim`, now 3.x supports
144144
<ChildComponent v-model.capitalize="pageTitle" />
145145
```
146146

147-
Read more about custom `v-model` modifiers in the [Component Events](http://vuejs.org/guide/components/events.html#usage-with-v-model) section.
147+
Read more about [custom `v-model` modifiers](https://vuejs.org/guide/components/v-model.html#handling-v-model-modifiers).
148148

149149
## Migration Strategy
150150

@@ -191,6 +191,6 @@ We recommend:
191191

192192
For more information on the new `v-model` syntax, see:
193193

194-
- [Using `v-model` on Components](https://vuejs.org/guide/components/events.html#usage-with-v-model)
195-
- [`v-model` arguments](https://vuejs.org/guide/components/events.html#v-model-arguments)
196-
- [Handling `v-model` modifiers](https://vuejs.org/guide/components/events.html#usage-with-v-model)
194+
- [Using `v-model` on Components](https://vuejs.org/guide/components/v-model.html)
195+
- [`v-model` arguments](https://vuejs.org/guide/components/v-model.html#v-model-arguments)
196+
- [Handling `v-model` modifiers](https://vuejs.org/guide/components/v-model.html#handling-v-model-modifiers)

src/zh/breaking-changes/v-model.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ this.$emit('update:title', newValue)
144144
<ChildComponent v-model.capitalize="pageTitle" />
145145
```
146146

147-
我们可以在[组件事件](http://cn.vuejs.org/guide/components/events.html#usage-with-v-model)部分中了解有关自定义 `v-model` 修饰符的更多信息
147+
[自定义 `v-model` 修饰符](https://cn.vuejs.org/guide/components/v-model.html)的更多信息
148148

149149
## 迁移策略
150150

@@ -191,6 +191,6 @@ this.$emit('update:title', newValue)
191191

192192
更多新的 `v-model` 语法相关信息,请参考:
193193

194-
- [在组件中使用 `v-model`](https://cn.vuejs.org/guide/components/events.html#usage-with-v-model)
195-
- [`v-model` 参数](https://cn.vuejs.org/guide/components/events.html#v-model-arguments)
196-
- [处理 `v-model` 修饰符](https://cn.vuejs.org/guide/components/events.html#usage-with-v-model)
194+
- [在组件中使用 `v-model`](https://cn.vuejs.org/guide/components/v-model.html)
195+
- [`v-model` 参数](https://cn.vuejs.org/guide/components/v-model.html#v-model-arguments)
196+
- [处理 `v-model` 修饰符](https://cn.vuejs.org/guide/components/v-model.html#handling-v-model-modifiers)

0 commit comments

Comments
 (0)