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/README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -39,15 +39,15 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
39
39
| Rule ID | Description ||
40
40
|:--------|:------------|:---|
41
41
|[vue/no-async-in-computed-properties](./no-async-in-computed-properties.md)| disallow asynchronous actions in computed properties ||
42
-
|[vue/no-deprecated-events-api](./no-deprecated-events-api.md)| disallow using deprecated events api ||
43
-
|[vue/no-deprecated-data-object-declaration](./no-deprecated-data-object-declaration.md)| disallow using deprecated object declaration on data |:wrench:|
44
-
|[vue/no-deprecated-filter](./no-deprecated-filter.md)| disallow using deprecated filters syntax ||
45
-
|[vue/no-deprecated-inline-template](./no-deprecated-inline-template.md)| disallow using deprecated `inline-template` attribute ||
42
+
|[vue/no-deprecated-data-object-declaration](./no-deprecated-data-object-declaration.md)| disallow using deprecated object declaration on data (in Vue.js 3.0.0+) |:wrench:|
43
+
|[vue/no-deprecated-events-api](./no-deprecated-events-api.md)| disallow using deprecated events api (in Vue.js 3.0.0+) ||
44
+
|[vue/no-deprecated-filter](./no-deprecated-filter.md)| disallow using deprecated filters syntax (in Vue.js 3.0.0+) ||
45
+
|[vue/no-deprecated-inline-template](./no-deprecated-inline-template.md)| disallow using deprecated `inline-template` attribute (in Vue.js 3.0.0+) ||
46
46
|[vue/no-deprecated-scope-attribute](./no-deprecated-scope-attribute.md)| disallow deprecated `scope` attribute (in Vue.js 2.5.0+) |:wrench:|
47
47
|[vue/no-deprecated-slot-attribute](./no-deprecated-slot-attribute.md)| disallow deprecated `slot` attribute (in Vue.js 2.6.0+) |:wrench:|
48
48
|[vue/no-deprecated-slot-scope-attribute](./no-deprecated-slot-scope-attribute.md)| disallow deprecated `slot-scope` attribute (in Vue.js 2.6.0+) |:wrench:|
49
49
|[vue/no-deprecated-v-bind-sync](./no-deprecated-v-bind-sync.md)| disallow use of deprecated `.sync` modifier on `v-bind` directive (in Vue.js 3.0.0+) |:wrench:|
50
-
|[vue/no-deprecated-v-on-number-modifiers](./no-deprecated-v-on-number-modifiers.md)| disallow using deprecated number (keycode) modifiers |:wrench:|
50
+
|[vue/no-deprecated-v-on-number-modifiers](./no-deprecated-v-on-number-modifiers.md)| disallow using deprecated number (keycode) modifiers (in Vue.js 3.0.0+) |:wrench:|
51
51
|[vue/no-dupe-keys](./no-dupe-keys.md)| disallow duplication of field names ||
52
52
|[vue/no-duplicate-attributes](./no-duplicate-attributes.md)| disallow duplication of attributes ||
Copy file name to clipboardExpand all lines: docs/rules/no-deprecated-data-object-declaration.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,10 @@
2
2
pageClass: rule-details
3
3
sidebarDepth: 0
4
4
title: vue/no-deprecated-data-object-declaration
5
-
description: disallow using deprecated object declaration on data
5
+
description: disallow using deprecated object declaration on data (in Vue.js 3.0.0+)
6
6
---
7
7
# vue/no-deprecated-data-object-declaration
8
-
> disallow using deprecated object declaration on data
8
+
> disallow using deprecated object declaration on data (in Vue.js 3.0.0+)
9
9
10
10
-:gear: This rule is included in all of `"plugin:vue/vue3-essential"`, `"plugin:vue/vue3-strongly-recommended"` and `"plugin:vue/vue3-recommended"`.
11
11
-: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.
0 commit comments