Skip to content

Commit 86b3b3f

Browse files
authored
Fix broken links in docs (vuejs#1803)
1 parent 1d1be85 commit 86b3b3f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+94
-93
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![NPM version](https://img.shields.io/npm/v/eslint-plugin-vue.svg?style=flat)](https://npmjs.org/package/eslint-plugin-vue)
44
[![NPM downloads](https://img.shields.io/npm/dm/eslint-plugin-vue.svg?style=flat)](https://npmjs.org/package/eslint-plugin-vue)
55
[![CircleCI](https://img.shields.io/circleci/project/github/vuejs/eslint-plugin-vue/master.svg?style=flat)](https://circleci.com/gh/vuejs/eslint-plugin-vue)
6-
[![License](https://img.shields.io/github/license/vuejs/eslint-plugin-vue.svg?style=flat)](https://github.com/vuejs/eslint-plugin-vue/blob/master/LICENSE.md)
6+
[![License](https://img.shields.io/github/license/vuejs/eslint-plugin-vue.svg?style=flat)](https://github.com/vuejs/eslint-plugin-vue/blob/master/LICENSE)
77

88
> Official ESLint plugin for Vue.js
99
@@ -29,7 +29,7 @@ Be sure to read the [official ESLint guide](https://eslint.org/docs/developer-gu
2929

3030
To see what an abstract syntax tree (AST) of your code looks like, you may use [AST Explorer](https://astexplorer.net). After opening [AST Explorer](https://astexplorer.net), select `Vue` as the syntax and `vue-eslint-parser` as the parser.
3131

32-
The default JavaScript parser must be replaced because [Vue.js single file components](https://v3.vuejs.org/guide/single-file-component.html#single-file-components) are not plain JavaScript, but a custom file format. [`vue-eslint-parser`](https://github.com/vuejs/vue-eslint-parser) is a replacement parser that generates an enhanced AST with nodes that represent specific parts of the template syntax, as well as the contents of the `<script>` tag.
32+
The default JavaScript parser must be replaced because [Vue.js single file components](https://vuejs.org/guide/scaling-up/sfc.html) are not plain JavaScript, but a custom file format. [`vue-eslint-parser`](https://github.com/vuejs/vue-eslint-parser) is a replacement parser that generates an enhanced AST with nodes that represent specific parts of the template syntax, as well as the contents of the `<script>` tag.
3333

3434
To learn more about certain nodes in a produced AST, see the [ESTree project page](https://github.com/estree/estree) and the [vue-eslint-parser AST documentation](https://github.com/vuejs/vue-eslint-parser/blob/master/docs/ast.md).
3535

@@ -46,4 +46,4 @@ If you're stuck, remember there are many rules available for reference. If you c
4646

4747
## :lock: License
4848

49-
See the [LICENSE](LICENSE) file for license rights and limitations (MIT).
49+
See the [LICENSE](LICENSE) file for license rights and limitations (MIT).

docs/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Official ESLint plugin for Vue.js.
99
This plugin allows us to check the `<template>` and `<script>` of `.vue` files with ESLint, as well as Vue code in `.js` files.
1010

1111
- Finds syntax errors.
12-
- Finds the wrong use of [Vue.js Directives](https://v3.vuejs.org/api/directives.html).
13-
- Finds the violation for [Vue.js Style Guide](https://v3.vuejs.org/style-guide/).
12+
- Finds the wrong use of [Vue.js Directives](https://vuejs.org/api/built-in-directives.html).
13+
- Finds the violation for [Vue.js Style Guide](https://vuejs.org/style-guide/).
1414

1515
ESLint editor integrations are useful to check your code in real-time.
1616

docs/rules/attributes-order.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ since: v4.3.0
1414

1515
## :book: Rule Details
1616

17-
This rule aims to enforce ordering of component attributes. The default order is specified in the [Vue.js Style Guide](https://v3.vuejs.org/style-guide/#element-attribute-order-recommended) and is:
17+
This rule aims to enforce ordering of component attributes. The default order is specified in the [Vue.js Style Guide](https://vuejs.org/style-guide/rules-recommended.html#element-attribute-order) and is:
1818

1919
- `DEFINITION`
2020
e.g. 'is', 'v-is'
@@ -247,8 +247,8 @@ Note that `v-bind="object"` syntax is considered to be the same as the next or p
247247

248248
## :books: Further Reading
249249

250-
- [Style guide - Element attribute order](https://v3.vuejs.org/style-guide/#element-attribute-order-recommended)
251-
- [Style guide (for v2) - Element attribute order](https://vuejs.org/v2/style-guide/#Element-attribute-order-recommended)
250+
- [Style guide - Element attribute order](https://vuejs.org/style-guide/rules-recommended.html#element-attribute-order)
251+
- [Style guide (for v2) - Element attribute order](https://v2.vuejs.org/v2/style-guide/#Element-attribute-order-recommended)
252252

253253
## :rocket: Version
254254

docs/rules/component-api-style.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ export default {
7979
```
8080

8181
- Array options ... Defines the API styles you want to allow. Default is `["script-setup", "composition"]`. You can use the following values.
82-
- `"script-setup"` ... If set, allows [`<script setup>`](https://v3.vuejs.org/api/sfc-script-setup.html).
83-
- `"composition"` ... If set, allows [Composition API](https://v3.vuejs.org/api/composition-api.html) (not `<script setup>`).
82+
- `"script-setup"` ... If set, allows [`<script setup>`](https://vuejs.org/api/sfc-script-setup.html).
83+
- `"composition"` ... If set, allows [Composition API](https://vuejs.org/api/#composition-api) (not `<script setup>`).
8484
- `"composition-vue2"` ... If set, allows [Composition API for Vue 2](https://github.com/vuejs/composition-api) (not `<script setup>`). In particular, it allows `render`, `renderTracked` and `renderTriggered` alongside `setup`.
8585
- `"options"` ... If set, allows Options API.
8686

docs/rules/component-definition-name-casing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ Vue.component('MyComponent', {
121121

122122
## :books: Further Reading
123123

124-
- [Style guide - Component name casing in JS/JSX](https://v3.vuejs.org/style-guide/#component-name-casing-in-js-jsx-strongly-recommended)
124+
- [Style guide - Component name casing in JS/JSX](https://vuejs.org/style-guide/rules-strongly-recommended.html#component-name-casing-in-js-jsx)
125125

126126
## :rocket: Version
127127

docs/rules/component-name-in-template-casing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default {
143143

144144
## :books: Further Reading
145145

146-
- [Style guide - Component name casing in templates](https://v3.vuejs.org/style-guide/#component-name-casing-in-templates-strongly-recommended)
146+
- [Style guide - Component name casing in templates](https://vuejs.org/style-guide/rules-strongly-recommended.html#component-name-casing-in-templates)
147147

148148
## :rocket: Version
149149

docs/rules/component-tags-order.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ This rule warns about the order of the `<script>`, `<template>` & `<style>` tags
114114

115115
## :books: Further Reading
116116

117-
- [Style guide - Single-file component top-level element order](https://v3.vuejs.org/style-guide/#single-file-component-top-level-element-order-recommended)
117+
- [Style guide - Single-file component top-level element order](https://vuejs.org/style-guide/rules-recommended.html#single-file-component-top-level-element-order)
118118

119119
## :rocket: Version
120120

docs/rules/custom-event-name-casing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@ export default {
168168
- [Guide - Custom Events]
169169
- [Guide (for v2) - Custom Events]
170170

171-
[Guide - Custom Events]: https://v3.vuejs.org/guide/component-custom-events.html
172-
[Guide (for v2) - Custom Events]: https://vuejs.org/v2/guide/components-custom-events.html
171+
[Guide - Custom Events]: https://vuejs.org/guide/components/events.html
172+
[Guide (for v2) - Custom Events]: https://v2.vuejs.org/v2/guide/components-custom-events.html
173173

174174
## :couple: Related Rules
175175

docs/rules/first-attribute-linebreak.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ This rule aims to enforce a consistent location for the first attribute.
156156

157157
## :books: Further Reading
158158

159-
- [Style guide - Multi attribute elements](https://v3.vuejs.org/style-guide/#multi-attribute-elements-strongly-recommended)
159+
- [Style guide - Multi attribute elements](https://vuejs.org/style-guide/rules-strongly-recommended.html#multi-attribute-elements)
160160

161161
## :rocket: Version
162162

docs/rules/html-quotes.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Object option:
9494

9595
## :books: Further Reading
9696

97-
- [Style guide - Quoted attribute values](https://v3.vuejs.org/style-guide/#Quoted-attribute-values-strongly-recommended)
97+
- [Style guide - Quoted attribute values](https://vuejs.org/style-guide/rules-strongly-recommended.html#quoted-attribute-values)
9898

9999
## :rocket: Version
100100

docs/rules/html-self-closing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Every option can be set to one of the following values:
9595

9696
## :books: Further Reading
9797

98-
- [Style guide - Self closing components](https://v3.vuejs.org/style-guide/#Self-closing-components-strongly-recommended)
98+
- [Style guide - Self closing components](https://vuejs.org/style-guide/rules-strongly-recommended.html#self-closing-components)
9999

100100
## :rocket: Version
101101

docs/rules/match-component-file-name.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ export default {
308308

309309
## :books: Further Reading
310310

311-
- [Style guide - Single-file component filename casing](https://v3.vuejs.org/style-guide/#single-file-component-filename-casing-strongly-recommended)
311+
- [Style guide - Single-file component filename casing](https://vuejs.org/style-guide/rules-strongly-recommended.html#single-file-component-filename-casing)
312312

313313
## :rocket: Version
314314

docs/rules/max-attributes-per-line.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ There is a configurable number of attributes that are acceptable in one-line cas
114114

115115
## :books: Further Reading
116116

117-
- [Style guide - Multi attribute elements](https://v3.vuejs.org/style-guide/#multi-attribute-elements-strongly-recommended)
117+
- [Style guide - Multi attribute elements](https://vuejs.org/style-guide/rules-strongly-recommended.html#multi-attribute-elements)
118118

119119
## :rocket: Version
120120

docs/rules/multi-word-component-names.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ export default {
118118

119119
## :books: Further Reading
120120

121-
- [Style guide - Multi-word component names](https://v3.vuejs.org/style-guide/#multi-word-component-names-essential)
121+
- [Style guide - Multi-word component names](https://vuejs.org/style-guide/rules-essential.html#use-multi-word-component-names)
122122

123123
## :rocket: Version
124124

docs/rules/name-property-casing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ This rule aims at enforcing the style for the `name` property casing for consist
8383

8484
## :books: Further Reading
8585

86-
- [Style guide - Component name casing in JS/JSX](https://v3.vuejs.org/style-guide/#component-name-casing-in-js-jsx-strongly-recommended)
86+
- [Style guide - Component name casing in JS/JSX](https://vuejs.org/style-guide/rules-strongly-recommended.html#component-name-casing-in-js-jsx)
8787

8888
## :rocket: Version
8989

docs/rules/new-line-between-multi-line-property.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default {
8989

9090
## :books: Further Reading
9191

92-
- [Style guide - Empty lines in component/instance options](https://v3.vuejs.org/style-guide/#empty-lines-in-component-instance-options-recommended)
92+
- [Style guide - Empty lines in component/instance options](https://vuejs.org/style-guide/rules-recommended.html#empty-lines-in-component-instance-options)
9393

9494
## :rocket: Version
9595

docs/rules/next-tick-style.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ export default {
9191

9292
## :books: Further Reading
9393

94-
- [`Vue.nextTick` API in Vue 2](https://vuejs.org/v2/api/#Vue-nextTick)
95-
- [`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)
97-
- [Global `nextTick` API in Vue 3](https://v3.vuejs.org/api/global-api.html#nexttick)
98-
- [Instance `$nextTick` API in Vue 3](https://v3.vuejs.org/api/instance-methods.html#nexttick)
94+
- [`Vue.nextTick` API in Vue 2](https://v2.vuejs.org/v2/api/#Vue-nextTick)
95+
- [`vm.$nextTick` API in Vue 2](https://v2.vuejs.org/v2/api/#vm-nextTick)
96+
- [Global API Treeshaking](https://v3-migration.vuejs.org/breaking-changes/global-api-treeshaking.html)
97+
- [Global `nextTick` API in Vue 3](https://vuejs.org/api/general.html#nexttick)
98+
- [Instance `$nextTick` API in Vue 3](https://vuejs.org/api/component-instance.html#nexttick)
9999

100100
## :rocket: Version
101101

docs/rules/no-arrow-functions-in-watch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ since: v7.0.0
1313

1414
## :book: Rule Details
1515

16-
This rules disallows using arrow functions to defined watcher.The reason is arrow functions bind the parent context, so `this` will not be the Vue instance as you expect.([see here for more details](https://v3.vuejs.org/api/options-data.html#watch))
16+
This rules disallows using arrow functions to defined watcher.The reason is arrow functions bind the parent context, so `this` will not be the Vue instance as you expect.([see here for more details](https://vuejs.org/api/options-state.html#watch))
1717

1818
<eslint-code-block :rules="{'vue/no-arrow-functions-in-watch': ['error']}">
1919

docs/rules/no-child-content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ This rule reports child content of elements that have a directive which overwrit
4444

4545
## :books: Further Reading
4646

47-
- [`v-html` directive](https://v3.vuejs.org/api/directives.html#v-html)
48-
- [`v-text` directive](https://v3.vuejs.org/api/directives.html#v-text)
47+
- [`v-html` directive](https://vuejs.org/api/built-in-directives.html#v-html)
48+
- [`v-text` directive](https://vuejs.org/api/built-in-directives.html#v-text)
4949

5050
## :rocket: Version
5151

docs/rules/no-confusing-v-for-v-if.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ In that case, the `v-if` should be written on the wrapper element.
5050
::: warning Note
5151
When they exist on the same node, `v-for` has a higher priority than `v-if`. That means the `v-if` will be run on each iteration of the loop separately.
5252

53-
[https://v3.vuejs.org/guide/list.html#v-for-with-v-if](https://v3.vuejs.org/guide/list.html#v-for-with-v-if)
53+
[https://vuejs.org/guide/essentials/list.html#v-for-with-v-if](https://vuejs.org/guide/essentials/list.html#v-for-with-v-if)
5454
:::
5555

5656
## :wrench: Options
@@ -59,9 +59,9 @@ Nothing.
5959

6060
## :books: Further Reading
6161

62-
- [Style guide - Avoid v-if with v-for](https://v3.vuejs.org/style-guide/#avoid-v-if-with-v-for-essential)
63-
- [Guide - Conditional Rendering / v-if with v-for](https://v3.vuejs.org/guide/conditional.html#v-if-with-v-for)
64-
- [Guide - List Rendering / v-for with v-if](https://v3.vuejs.org/guide/list.html#v-for-with-v-if)
62+
- [Style guide - Avoid v-if with v-for](https://vuejs.org/style-guide/rules-essential.html#avoid-v-if-with-v-for)
63+
- [Guide - Conditional Rendering / v-if with v-for](https://vuejs.org/guide/essentials/conditional.html#v-if-with-v-for)
64+
- [Guide - List Rendering / v-for with v-if](https://vuejs.org/guide/essentials/list.html#v-for-with-v-if)
6565

6666
## :rocket: Version
6767

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

+2-2
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

+2-2
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

+2-2
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

+2-2
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

+3-3
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,9 +34,9 @@ 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)
39-
- [Guide - Functional Components](https://vuejs.org/v2/guide/render-function.html#Functional-Components)
39+
- [Guide - Functional Components](https://v2.vuejs.org/v2/guide/render-function.html#Functional-Components)
4040

4141
## :rocket: Version
4242

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

+2-2
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

+2-2
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

0 commit comments

Comments
 (0)