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: docs/rules/block-order.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/block-order
5
5
description: enforce order of component top-level elements
6
+
since: v9.16.0
6
7
---
7
8
# vue/block-order
8
9
9
10
> enforce order of component top-level elements
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
12
-:wrench: The `--fix` option on the [command line](https://eslint.org/docs/user-guide/command-line-interface#fixing-problems) can automatically fix some of the problems reported by this rule.
13
13
14
14
## :book: Rule Details
@@ -188,6 +188,10 @@ This rule warns about the order of the top-level tags, such as `<script>`, `<tem
188
188
189
189
-[Style guide - Single-file component top-level element order](https://vuejs.org/style-guide/rules-recommended.html#single-file-component-top-level-element-order)
190
190
191
+
## :rocket: Version
192
+
193
+
This rule was introduced in eslint-plugin-vue v9.16.0
Copy file name to clipboardExpand all lines: docs/rules/no-deprecated-model-definition.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/no-deprecated-model-definition
5
5
description: disallow deprecated `model` definition (in Vue.js 3.0.0+)
6
+
since: v9.16.0
6
7
---
7
8
# vue/no-deprecated-model-definition
8
9
9
10
> disallow deprecated `model` definition (in Vue.js 3.0.0+)
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
12
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
Copy file name to clipboardExpand all lines: docs/rules/no-use-v-else-with-v-for.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/no-use-v-else-with-v-for
5
5
description: disallow using `v-else-if`/`v-else` on the same element as `v-for`
6
+
since: v9.16.0
6
7
---
7
8
# vue/no-use-v-else-with-v-for
8
9
9
10
> disallow using `v-else-if`/`v-else` on the same element as `v-for`
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
-
13
12
## :book: Rule Details
14
13
15
14
This rule reports elements that have both `v-else-if`/`v-else` and `v-for` directives. That is valid in Vue (`v-else-if`/`v-else` will take precedence), but is confusing to read.
@@ -48,6 +47,10 @@ If you don't find using `v-else-if`/`v-else` together with `v-for` confusing to
Copy file name to clipboardExpand all lines: docs/rules/require-typed-object-prop.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/require-typed-object-prop
5
5
description: enforce adding type declarations to object props
6
+
since: v9.16.0
6
7
---
7
8
# vue/require-typed-object-prop
8
9
9
10
> enforce adding type declarations to object props
10
11
11
-
-:exclamation: <badgetext="This rule has not been released yet."vertical="middle"type="error"> ***This rule has not been released yet.*** </badge>
12
12
-:bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
13
13
14
14
## :book: Rule Details
@@ -44,6 +44,10 @@ Nothing.
44
44
45
45
When you're not using TypeScript in the project.
46
46
47
+
## :rocket: Version
48
+
49
+
This rule was introduced in eslint-plugin-vue v9.16.0
0 commit comments