Skip to content

docs: capitalize titles #3199

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/guide/components/v-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export default {

</div>

## `v-model` arguments {#v-model-arguments}
## `v-model` Arguments {#v-model-arguments}

`v-model` on a component can also accept an argument:

Expand Down Expand Up @@ -289,7 +289,7 @@ export default {

</div>

## Multiple `v-model` bindings {#multiple-v-model-bindings}
## Multiple `v-model` Bindings {#multiple-v-model-bindings}

By leveraging the ability to target a particular prop and event as we learned before with [`v-model` arguments](#v-model-arguments), we can now create multiple `v-model` bindings on a single component instance.

Expand Down Expand Up @@ -380,7 +380,7 @@ export default {

</div>

## Handling `v-model` modifiers {#handling-v-model-modifiers}
## Handling `v-model` Modifiers {#handling-v-model-modifiers}

When we were learning about form input bindings, we saw that `v-model` has [built-in modifiers](/guide/essentials/forms#modifiers) - `.trim`, `.number` and `.lazy`. In some cases, you might also want the `v-model` on your custom input component to support custom modifiers.

Expand Down Expand Up @@ -522,7 +522,7 @@ export default {

</div>

### Modifiers for `v-model` with arguments {#modifiers-for-v-model-with-arguments}
### Modifiers for `v-model` with Arguments {#modifiers-for-v-model-with-arguments}

<div class="options-api">

Expand Down