Skip to content

Commit 60f7dfd

Browse files
authored
refactor (#168): standardize headings (#176)
1 parent fde50da commit 60f7dfd

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

src/guide/migration/data-option.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Using the example above, there would only be one possible implementation of the
5959
</script>
6060
```
6161

62-
## How to Migrate
62+
## Migration Strategy
6363

6464
For users relying on the object declaration, we recommend:
6565

src/guide/migration/filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,6 @@ Using the example above, here is one example of how it could be implemented.
7070
</script>
7171
```
7272

73-
## How to Migrate
73+
## Migration Strategy
7474

7575
Instead of using filters, we recommend replacing them with computed properties or methods.

src/guide/migration/keycode-modifiers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@ Since [`KeyboardEvent.keyCode` has been deprecated](https://developer.mozilla.or
4646

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

49-
## How to Migrate
49+
## Migration Strategy
5050

5151
For those using `keyCode` in their codbase, we recommend converting them to their kebab-cased named equivalents.

src/guide/migration/render-function-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default {
7575
}
7676

7777
// return the render function
78-
return () => h(
78+
return () => h(
7979
'div',
8080
{
8181
onClick: increment
@@ -122,7 +122,7 @@ In 3.x, the entire VNode props structure is flattened. Using the example from ab
122122
}
123123
```
124124

125-
## How to Migrate
125+
## Migration Strategy
126126

127127
### Library Authors
128128

src/guide/migration/v-model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ In addition to v2 hard-coded `v-model` modifiers like `.trim`, now v3 supports c
138138

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

141-
## How to Migrate
141+
## Migration Strategy
142142

143143
We recommend:
144144

0 commit comments

Comments
 (0)