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/no-undef-components.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-undef-components
5
5
description: disallow use of undefined components in `<template>`
6
+
since: v8.4.0
6
7
---
7
8
# vue/no-undef-components
8
9
9
10
> disallow use of undefined components in `<template>`
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
This rule reports components that are used in the `<template>`, but that are not defined in the `<script setup>` or the Options API's `components` section.
14
13
15
14
Undefined components will be resolved from globally registered components. However, if you are not using global components, you can use this rule to prevent run-time errors.
Copy file name to clipboardExpand all lines: docs/rules/object-shorthand.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/object-shorthand
5
5
description: require or disallow method and property shorthand syntax for object literals in `<template>`
6
+
since: v8.4.0
6
7
---
7
8
# vue/object-shorthand
8
9
9
10
> require or disallow method and property shorthand syntax for object literals in `<template>`
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
This rule is the same rule as core [object-shorthand] rule but it applies to the expressions in `<template>`.
@@ -19,6 +19,10 @@ This rule is the same rule as core [object-shorthand] rule but it applies to the
Copy file name to clipboardExpand all lines: docs/rules/quote-props.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/quote-props
5
5
description: require quotes around object literal property names in `<template>`
6
+
since: v8.4.0
6
7
---
7
8
# vue/quote-props
8
9
9
10
> require quotes around object literal property names in `<template>`
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
This rule is the same rule as core [quote-props] rule but it applies to the expressions in `<template>`.
@@ -19,6 +19,10 @@ This rule is the same rule as core [quote-props] rule but it applies to the expr
0 commit comments