Skip to content

Commit d195cab

Browse files
committed
Update migration guide links
1 parent e756226 commit d195cab

14 files changed

+26
-26
lines changed

docs/rules/next-tick-style.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export default {
9393

9494
- [`Vue.nextTick` API in Vue 2](https://vuejs.org/v2/api/#Vue-nextTick)
9595
- [`vm.$nextTick` API in Vue 2](https://vuejs.org/v2/api/#vm-nextTick)
96-
- [Global API Treeshaking](https://v3.vuejs.org/guide/migration/global-api-treeshaking.html)
96+
- [Global API Treeshaking](https://v3-migration.vuejs.org/breaking-changes/global-api-treeshaking.html)
9797
- [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick)
9898
- [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick)
9999

docs/rules/no-deprecated-data-object-declaration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ since: v7.0.0
1717
This rule reports use of deprecated object declaration on `data` property (in Vue.js 3.0.0+).
1818
The different from `vue/no-shared-component-data` is the root instance being also disallowed.
1919

20-
See [Migration Guide - Data Option](https://v3.vuejs.org/guide/migration/data-option.html) for more details.
20+
See [Migration Guide - Data Option](https://v3-migration.vuejs.org/breaking-changes/data-option.html) for more details.
2121

2222
<eslint-code-block fix :rules="{'vue/no-deprecated-data-object-declaration': ['error']}" language="javascript" filename="example.js">
2323

@@ -79,7 +79,7 @@ Nothing.
7979

8080
## :books: Further Reading
8181

82-
- [Migration Guide - Data Option](https://v3.vuejs.org/guide/migration/data-option.html)
82+
- [Migration Guide - Data Option](https://v3-migration.vuejs.org/breaking-changes/data-option.html)
8383
- [Vue RFCs - 0019-remove-data-object-declaration](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0019-remove-data-object-declaration.md)
8484

8585
## :rocket: Version

docs/rules/no-deprecated-dollar-scopedslots-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ since: v7.0.0
1616

1717
This rule reports use of deprecated `$scopedSlots`. (in Vue.js 3.0.0+).
1818

19-
See [Migration Guide - Slots Unification](https://v3.vuejs.org/guide/migration/slots-unification.html) for more details.
19+
See [Migration Guide - Slots Unification](https://v3-migration.vuejs.org/breaking-changes/slots-unification.html) for more details.
2020

2121
<eslint-code-block fix :rules="{'vue/no-deprecated-dollar-scopedslots-api': ['error']}">
2222

@@ -43,7 +43,7 @@ Nothing.
4343

4444
## :books: Further Reading
4545

46-
- [Migration Guide - Slots Unification](https://v3.vuejs.org/guide/migration/slots-unification.html)
46+
- [Migration Guide - Slots Unification](https://v3-migration.vuejs.org/breaking-changes/slots-unification.html)
4747
- [Vue RFCs - 0006-slots-unification](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0006-slots-unification.md)
4848

4949
## :rocket: Version

docs/rules/no-deprecated-events-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ since: v7.0.0
1515

1616
This rule reports use of deprecated `$on`, `$off` `$once` api. (in Vue.js 3.0.0+).
1717

18-
See [Migration Guide - Events API](https://v3.vuejs.org/guide/migration/events-api.html) for more details.
18+
See [Migration Guide - Events API](https://v3-migration.vuejs.org/breaking-changes/events-api.html) for more details.
1919

2020
<eslint-code-block :rules="{'vue/no-deprecated-events-api': ['error']}">
2121

@@ -61,7 +61,7 @@ Nothing.
6161

6262
## :books: Further Reading
6363

64-
- [Migration Guide - Events API](https://v3.vuejs.org/guide/migration/events-api.html)
64+
- [Migration Guide - Events API](https://v3-migration.vuejs.org/breaking-changes/events-api.html)
6565
- [Vue RFCs - 0020-events-api-change](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0020-events-api-change.md)
6666

6767
## :rocket: Version

docs/rules/no-deprecated-filter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ since: v7.0.0
1515

1616
This rule reports deprecated `filters` syntax (removed in Vue.js v3.0.0+).
1717

18-
See [Migration Guide - Filters](https://v3.vuejs.org/guide/migration/filters.html) for more details.
18+
See [Migration Guide - Filters](https://v3-migration.vuejs.org/breaking-changes/filters.html) for more details.
1919

2020
<eslint-code-block :rules="{'vue/no-deprecated-filter': ['error']}">
2121

@@ -63,7 +63,7 @@ Nothing.
6363

6464
## :books: Further Reading
6565

66-
- [Migration Guide - Filters](https://v3.vuejs.org/guide/migration/filters.html)
66+
- [Migration Guide - Filters](https://v3-migration.vuejs.org/breaking-changes/filters.html)
6767
- [Vue RFCs - 0015-remove-filters](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0015-remove-filters.md)
6868

6969
## :rocket: Version

docs/rules/no-deprecated-functional-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ since: v7.0.0
1515

1616
This rule reports deprecated the `functional` template (in Vue.js 3.0.0+).
1717

18-
See [Migration Guide - Functional Components](https://v3.vuejs.org/guide/migration/functional-components.html) for more details.
18+
See [Migration Guide - Functional Components](https://v3-migration.vuejs.org/breaking-changes/functional-components.html) for more details.
1919

2020
<eslint-code-block :rules="{'vue/no-deprecated-functional-template': ['error']}">
2121

@@ -34,7 +34,7 @@ Nothing.
3434

3535
## :books: Further Reading
3636

37-
- [Migration Guide - Functional Components](https://v3.vuejs.org/guide/migration/functional-components.html)
37+
- [Migration Guide - Functional Components](https://v3-migration.vuejs.org/breaking-changes/functional-components.html)
3838
- [Vue RFCs - 0007-functional-async-api-change](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0007-functional-async-api-change.md)
3939
- [Guide - Functional Components](https://vuejs.org/v2/guide/render-function.html#Functional-Components)
4040

docs/rules/no-deprecated-html-element-is.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ since: v7.0.0
1515

1616
This rule reports deprecated the `is` attribute on HTML elements (removed in Vue.js v3.0.0+).
1717

18-
See [Migration Guide - Custom Elements Interop](https://v3.vuejs.org/guide/migration/custom-elements-interop.html#customized-built-in-elements) for more details.
18+
See [Migration Guide - Custom Elements Interop](https://v3-migration.vuejs.org/breaking-changes/custom-elements-interop.html#customized-built-in-elements) for more details.
1919

2020
<eslint-code-block :rules="{'vue/no-deprecated-html-element-is': ['error']}">
2121

@@ -39,7 +39,7 @@ Nothing.
3939

4040
## :books: Further Reading
4141

42-
- [Migration Guide - Custom Elements Interop](https://v3.vuejs.org/guide/migration/custom-elements-interop.html#customized-built-in-elements)
42+
- [Migration Guide - Custom Elements Interop](https://v3-migration.vuejs.org/breaking-changes/custom-elements-interop.html#customized-built-in-elements)
4343
- [Vue RFCs - 0027-custom-elements-interop](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0027-custom-elements-interop.md)
4444

4545
## :rocket: Version

docs/rules/no-deprecated-inline-template.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ since: v7.0.0
1515

1616
This rule reports deprecated `inline-template` attributes (removed in Vue.js v3.0.0+).
1717

18-
See [Migration Guide - Inline Template Attribute](https://v3.vuejs.org/guide/migration/inline-template-attribute.html) for more details.
18+
See [Migration Guide - Inline Template Attribute](https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html) for more details.
1919

2020
<eslint-code-block :rules="{'vue/no-deprecated-inline-template': ['error']}">
2121

@@ -42,7 +42,7 @@ Nothing.
4242

4343
## :books: Further Reading
4444

45-
- [Migration Guide - Inline Template Attribute](https://v3.vuejs.org/guide/migration/inline-template-attribute.html)
45+
- [Migration Guide - Inline Template Attribute](https://v3-migration.vuejs.org/breaking-changes/inline-template-attribute.html)
4646
- [Vue RFCs - 0016-remove-inline-templates](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0016-remove-inline-templates.md)
4747

4848
## :rocket: Version

docs/rules/no-deprecated-props-default-this.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ since: v7.0.0
1616
This rule reports the use of `this` within the props default value factory functions.
1717
In Vue.js 3.0.0+, props default value factory functions no longer have access to `this`.
1818

19-
See [Migration Guide - Props Default Function `this` Access](https://v3.vuejs.org/guide/migration/props-default-this.html) for more details.
19+
See [Migration Guide - Props Default Function `this` Access](https://v3-migration.vuejs.org/breaking-changes/props-default-this.html) for more details.
2020

2121
<eslint-code-block :rules="{'vue/no-deprecated-props-default-this': ['error']}">
2222

@@ -64,7 +64,7 @@ Nothing.
6464

6565
## :books: Further Reading
6666

67-
- [Migration Guide - Props Default Function `this` Access](https://v3.vuejs.org/guide/migration/props-default-this.html)
67+
- [Migration Guide - Props Default Function `this` Access](https://v3-migration.vuejs.org/breaking-changes/props-default-this.html)
6868

6969
## :rocket: Version
7070

docs/rules/no-deprecated-v-bind-sync.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ since: v7.0.0
1616

1717
This rule reports use of deprecated `.sync` modifier on `v-bind` directive (in Vue.js 3.0.0+).
1818

19-
See [Migration Guide - `v-model`](https://v3.vuejs.org/guide/migration/v-model.html) for more details.
19+
See [Migration Guide - `v-model`](https://v3-migration.vuejs.org/breaking-changes/v-model.html) for more details.
2020

2121
<eslint-code-block fix :rules="{'vue/no-deprecated-v-bind-sync': ['error']}">
2222

@@ -49,7 +49,7 @@ Nothing.
4949

5050
## :books: Further Reading
5151

52-
- [Migration Guide - `v-model`](https://v3.vuejs.org/guide/migration/v-model.html)
52+
- [Migration Guide - `v-model`](https://v3-migration.vuejs.org/breaking-changes/v-model.html)
5353
- [Vue RFCs - 0005-replace-v-bind-sync-with-v-model-argument](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0005-replace-v-bind-sync-with-v-model-argument.md)
5454

5555
## :rocket: Version

docs/rules/no-deprecated-v-on-number-modifiers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ since: v7.0.0
1616

1717
This rule reports use of deprecated `KeyboardEvent.keyCode` modifier on `v-on` directive (in Vue.js 3.0.0+).
1818

19-
See [Migration Guide - KeyCode Modifiers](https://v3.vuejs.org/guide/migration/keycode-modifiers.html) for more details.
19+
See [Migration Guide - KeyCode Modifiers](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html) for more details.
2020

2121
<eslint-code-block fix :rules="{'vue/no-deprecated-v-on-number-modifiers': ['error']}">
2222

@@ -48,7 +48,7 @@ Nothing.
4848

4949
## :books: Further Reading
5050

51-
- [Migration Guide - KeyCode Modifiers](https://v3.vuejs.org/guide/migration/keycode-modifiers.html)
51+
- [Migration Guide - KeyCode Modifiers](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html)
5252
- [Vue RFCs - 0014-drop-keycode-support](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0014-drop-keycode-support.md)
5353

5454
## :rocket: Version

docs/rules/no-deprecated-vue-config-keycodes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ since: v7.0.0
1515

1616
This rule reports use of deprecated `Vue.config.keyCodes` (in Vue.js 3.0.0+).
1717

18-
See [Migration Guide - KeyCode Modifiers](https://v3.vuejs.org/guide/migration/keycode-modifiers.html) for more details.
18+
See [Migration Guide - KeyCode Modifiers](https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html) for more details.
1919

2020
<eslint-code-block filename="a.js" language="javascript" :rules="{'vue/no-deprecated-vue-config-keycodes': ['error']}">
2121

@@ -44,7 +44,7 @@ Nothing.
4444
- [Vue RFCs - 0014-drop-keycode-support]
4545
- [API - Global Config - keyCodes]
4646

47-
[Migration Guide - KeyCode Modifiers]: https://v3.vuejs.org/guide/migration/keycode-modifiers.html
47+
[Migration Guide - KeyCode Modifiers]: https://v3-migration.vuejs.org/breaking-changes/keycode-modifiers.html
4848
[Vue RFCs - 0014-drop-keycode-support]: https://github.com/vuejs/rfcs/blob/master/active-rfcs/0014-drop-keycode-support.md
4949
[API - Global Config - keyCodes]: https://vuejs.org/v2/api/#keyCodes
5050

docs/rules/no-v-for-template-key-on-child.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This rule reports the key of the `<template v-for>` placed on the child elements
1717

1818
In Vue.js 3.x, with the support for fragments, the `<template v-for>` key can be placed on the `<template>` tag.
1919

20-
See [Migration Guide - `key` attribute > With `<template v-for>`](https://v3.vuejs.org/guide/migration/key-attribute.html#with-template-v-for) for more details.
20+
See [Migration Guide - `key` attribute > With `<template v-for>`](https://v3-migration.vuejs.org/breaking-changes/key-attribute.html#with-template-v-for) for more details.
2121

2222
::: warning Note
2323
Do not use with the [vue/no-v-for-template-key] rule for Vue.js 2.x.
@@ -54,7 +54,7 @@ Nothing.
5454

5555
## :books: Further Reading
5656

57-
- [Migration Guide - `key` attribute > With `<template v-for>`](https://v3.vuejs.org/guide/migration/key-attribute.html#with-template-v-for)
57+
- [Migration Guide - `key` attribute > With `<template v-for>`](https://v3-migration.vuejs.org/breaking-changes/key-attribute.html#with-template-v-for)
5858

5959
## :rocket: Version
6060

docs/rules/valid-next-tick.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ Nothing.
8080

8181
- [`Vue.nextTick` API in Vue 2](https://vuejs.org/v2/api/#Vue-nextTick)
8282
- [`vm.$nextTick` API in Vue 2](https://vuejs.org/v2/api/#vm-nextTick)
83-
- [Global API Treeshaking](https://v3.vuejs.org/guide/migration/global-api-treeshaking.html)
83+
- [Global API Treeshaking](https://v3-migration.vuejs.org/breaking-changes/global-api-treeshaking.html)
8484
- [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick)
8585
- [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick)
8686

0 commit comments

Comments
 (0)