Skip to content

Commit

Permalink
Fix v-model links (#38)
Browse files Browse the repository at this point in the history
* Fix v-model links

* Apply suggestions from code review

* Update v-model.md

---------

Co-authored-by: Jinjiang <[email protected]>
  • Loading branch information
jay-es and Jinjiang committed Mar 14, 2023
1 parent 5899bf0 commit 96242eb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/breaking-changes/v-model.md
Expand Up @@ -144,7 +144,7 @@ In addition to 2.x hard-coded `v-model` modifiers like `.trim`, now 3.x supports
<ChildComponent v-model.capitalize="pageTitle" />
```

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

## Migration Strategy

Expand Down Expand Up @@ -191,6 +191,6 @@ We recommend:

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

- [Using `v-model` on Components](https://vuejs.org/guide/components/events.html#usage-with-v-model)
- [`v-model` arguments](https://vuejs.org/guide/components/events.html#v-model-arguments)
- [Handling `v-model` modifiers](https://vuejs.org/guide/components/events.html#usage-with-v-model)
- [Using `v-model` on Components](https://vuejs.org/guide/components/v-model.html)
- [`v-model` arguments](https://vuejs.org/guide/components/v-model.html#v-model-arguments)
- [Handling `v-model` modifiers](https://vuejs.org/guide/components/v-model.html#handling-v-model-modifiers)
8 changes: 4 additions & 4 deletions src/zh/breaking-changes/v-model.md
Expand Up @@ -144,7 +144,7 @@ this.$emit('update:title', newValue)
<ChildComponent v-model.capitalize="pageTitle" />
```

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

## 迁移策略

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

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

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

0 comments on commit 96242eb

Please sign in to comment.