Skip to content

refactor (#168): standardize headings #176

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
Jul 14, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/guide/migration/data-option.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Using the example above, there would only be one possible implementation of the
</script>
```

## How to Migrate
## Migration Strategy

For users relying on the object declaration, we recommend:

Expand Down
2 changes: 1 addition & 1 deletion src/guide/migration/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,6 @@ Using the example above, here is one example of how it could be implemented.
</script>
```

## How to Migrate
## Migration Strategy

Instead of using filters, we recommend replacing them with computed properties or methods.
2 changes: 1 addition & 1 deletion src/guide/migration/keycode-modifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@ Since [`KeyboardEvent.keyCode` has been deprecated](https://developer.mozilla.or

As a result, this means that `config.keyCodes` is now also deprecated and will no longer be supported.

## How to Migrate
## Migration Strategy

For those using `keyCode` in their codbase, we recommend converting them to their kebab-cased named equivalents.
4 changes: 2 additions & 2 deletions src/guide/migration/render-function-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export default {
}

// return the render function
return () => h(
return () => h(
'div',
{
onClick: increment
Expand Down Expand Up @@ -122,7 +122,7 @@ In 3.x, the entire VNode props structure is flattened. Using the example from ab
}
```

## How to Migrate
## Migration Strategy

### Library Authors

Expand Down
2 changes: 1 addition & 1 deletion src/guide/migration/v-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ In addition to v2 hard-coded `v-model` modifiers like `.trim`, now v3 supports c

Read more about custom `v-model` modifiers in the [Custom Events](../component-custom-events.html#handling-v-model-modifiers) section.

## How to Migrate
## Migration Strategy

We recommend:

Expand Down