You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/vue-compat/README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,7 @@ The following workflow walks through the steps of migrating an actual Vue 2 app
93
93
}
94
94
}
95
95
})
96
+
}
96
97
}
97
98
```
98
99
</details>
@@ -163,7 +164,7 @@ The following workflow walks through the steps of migrating an actual Vue 2 app
163
164
164
165
- You can filter for specific warnings in the browser console. It's a good idea to use the filter and focus on fixing one item at a time. You can also use negated filters like `-GLOBAL_MOUNT`.
165
166
166
-
- You can suppress specific deperecations via [compat configuration](#compat-configuration).
167
+
- You can suppress specific deprecations via [compat configuration](#compat-configuration).
167
168
168
169
- Some warnings maybe caused by a dependency that you use (e.g. `vue-router`). You can check this from the warning's component trace or stack trace (expanded on click). Focus on fixing the warnings that originates from your own source code first.
169
170
@@ -217,7 +218,7 @@ declare module 'vue' {
217
218
}
218
219
```
219
220
220
-
Note the `CompatVue` type does not provide options API `this` type inference for `new Vue()` and `Vue.extend` - to get `this` type inference inside compoent options, update to use [`defineComponent`](https://v3.vuejs.org/api/global-api.html#definecomponent) instead.
221
+
Note the `CompatVue` type does not provide options API `this` type inference for `new Vue()` and `Vue.extend` - to get `this` type inference inside component options, update to use [`defineComponent`](https://v3.vuejs.org/api/global-api.html#definecomponent) instead.
221
222
222
223
## Compat Configuration
223
224
@@ -308,7 +309,7 @@ Features that start with `COMPILER_` are compiler-specific: if you are using the
0 commit comments