diff --git a/README.md b/README.md
index 1803aff7b..cca995804 100644
--- a/README.md
+++ b/README.md
@@ -179,30 +179,6 @@ Enforce all the rules in this category, as well as all higher priority rules, wi
| | [order-in-components](./docs/rules/order-in-components.md) | enforce order of properties in components |
| | [this-in-template](./docs/rules/this-in-template.md) | enforce usage of `this` in template |
-### Deprecated
-
-> - :warning: We're going to remove deprecated rules in the next major release. Please migrate to successor/new rules.
-> - :innocent: We don't fix bugs which are in deprecated rules since we don't have enough resources.
-
-| Rule ID | Replaced by |
-|:--------|:------------|
-| [html-no-self-closing](./docs/rules/html-no-self-closing.md) | [html-self-closing](./docs/rules/html-self-closing.md) |
-| [no-invalid-template-root](./docs/rules/no-invalid-template-root.md) | [valid-template-root](./docs/rules/valid-template-root.md) |
-| [no-invalid-v-bind](./docs/rules/no-invalid-v-bind.md) | [valid-v-bind](./docs/rules/valid-v-bind.md) |
-| [no-invalid-v-cloak](./docs/rules/no-invalid-v-cloak.md) | [valid-v-cloak](./docs/rules/valid-v-cloak.md) |
-| [no-invalid-v-else-if](./docs/rules/no-invalid-v-else-if.md) | [valid-v-else-if](./docs/rules/valid-v-else-if.md) |
-| [no-invalid-v-else](./docs/rules/no-invalid-v-else.md) | [valid-v-else](./docs/rules/valid-v-else.md) |
-| [no-invalid-v-for](./docs/rules/no-invalid-v-for.md) | [valid-v-for](./docs/rules/valid-v-for.md) |
-| [no-invalid-v-html](./docs/rules/no-invalid-v-html.md) | [valid-v-html](./docs/rules/valid-v-html.md) |
-| [no-invalid-v-if](./docs/rules/no-invalid-v-if.md) | [valid-v-if](./docs/rules/valid-v-if.md) |
-| [no-invalid-v-model](./docs/rules/no-invalid-v-model.md) | [valid-v-model](./docs/rules/valid-v-model.md) |
-| [no-invalid-v-on](./docs/rules/no-invalid-v-on.md) | [valid-v-on](./docs/rules/valid-v-on.md) |
-| [no-invalid-v-once](./docs/rules/no-invalid-v-once.md) | [valid-v-once](./docs/rules/valid-v-once.md) |
-| [no-invalid-v-pre](./docs/rules/no-invalid-v-pre.md) | [valid-v-pre](./docs/rules/valid-v-pre.md) |
-| [no-invalid-v-show](./docs/rules/no-invalid-v-show.md) | [valid-v-show](./docs/rules/valid-v-show.md) |
-| [no-invalid-v-text](./docs/rules/no-invalid-v-text.md) | [valid-v-text](./docs/rules/valid-v-text.md) |
-| [no-reservered-keys](./docs/rules/no-reservered-keys.md) | [no-reserved-keys](./docs/rules/no-reserved-keys.md) |
-
## :couple: FAQ
diff --git a/docs/rules/html-no-self-closing.md b/docs/rules/html-no-self-closing.md
deleted file mode 100644
index bda6e3328..000000000
--- a/docs/rules/html-no-self-closing.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# disallow self-closing elements (html-no-self-closing)
-
-- :warning: This rule was **deprecated** and replaced by [html-self-closing](html-self-closing.md) rule.
-- :wrench: The `--fix` option on the [command line](http://eslint.org/docs/user-guide/command-line-interface#fix) can automatically fix some of the problems reported by this rule.
-
-Self-closing (e.g. ` `) is syntax of XML/XHTML.
-HTML ignores it.
-
-## :book: Rule Details
-
-This rule reports every self-closing element except XML context.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
diff --git a/docs/rules/no-invalid-template-root.md b/docs/rules/no-invalid-template-root.md
deleted file mode 100644
index 1e6bf84d5..000000000
--- a/docs/rules/no-invalid-template-root.md
+++ /dev/null
@@ -1,100 +0,0 @@
-# disallow invalid template root (no-invalid-template-root)
-
-- :warning: This rule was **deprecated** and replaced by [valid-template-root](valid-template-root.md) rule.
-
-This rule checks whether every template root is valid.
-
-## :book: Rule Details
-
-This rule reports the template root in the following cases:
-
-- The root is nothing. E.g. ``.
-- The root is text. E.g. `hello`.
-- The root is multiple elements. E.g. `
one
two
`.
-- The root element has `v-for` directives. E.g. `
{{x}}
`.
-- The root element is `` or `` elements. E.g. `hello`.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```js
-template: ''
-```
-
-```html
-
-
-```
-
-```js
-template: `
-
-
-```
-
-## :wrench: Options
-
-Nothing.
diff --git a/docs/rules/no-invalid-v-bind.md b/docs/rules/no-invalid-v-bind.md
deleted file mode 100644
index 4908424fa..000000000
--- a/docs/rules/no-invalid-v-bind.md
+++ /dev/null
@@ -1,44 +0,0 @@
-# disallow invalid `v-bind` directives (no-invalid-v-bind)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-bind](valid-v-bind.md) rule.
-
-This rule checks whether every `v-bind` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-bind` directives in the following cases:
-
-- The directive does not have that attribute value. E.g. ``
-- The directive has invalid modifiers. E.g. ``
-
-This rule does not report `v-bind` directives which do not have their argument (E.g. ``) because it's valid if the attribute value is an object.
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-parsing-error]
-
-
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-cloak.md b/docs/rules/no-invalid-v-cloak.md
deleted file mode 100644
index 3f5dc8134..000000000
--- a/docs/rules/no-invalid-v-cloak.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# disallow invalid `v-cloak` directives (no-invalid-v-cloak)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-cloak](valid-v-cloak.md) rule.
-
-This rule checks whether every `v-cloak` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-cloak` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive has that attribute value. E.g. ``
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-```
-
-## :wrench: Options
-
-Nothing.
diff --git a/docs/rules/no-invalid-v-else-if.md b/docs/rules/no-invalid-v-else-if.md
deleted file mode 100644
index 085fed94c..000000000
--- a/docs/rules/no-invalid-v-else-if.md
+++ /dev/null
@@ -1,47 +0,0 @@
-# disallow invalid `v-else-if` directives (no-invalid-v-else-if)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-else-if](valid-v-else-if.md) rule.
-
-This rule checks whether every `v-else-if` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-else-if` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-- The directive is on the elements that the previous element don't have `v-if`/`v-else-if` directives. E.g. ``
-- The directive is on the elements which have `v-if`/`v-else` directives. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-invalid-v-if]
-- [no-invalid-v-else]
-- [no-parsing-error]
-
-
-[no-invalid-v-if]: no-invalid-v-if.md
-[no-invalid-v-else]: no-invalid-v-else.md
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-else.md b/docs/rules/no-invalid-v-else.md
deleted file mode 100644
index bdafa603b..000000000
--- a/docs/rules/no-invalid-v-else.md
+++ /dev/null
@@ -1,45 +0,0 @@
-# disallow invalid `v-else` directives (no-invalid-v-else)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-else](valid-v-else.md) rule.
-
-This rule checks whether every `v-else` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-else` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive has that attribute value. E.g. ``
-- The directive is on the elements that the previous element don't have `v-if`/`v-if-else` directives. E.g. ``
-- The directive is on the elements which have `v-if`/`v-if-else` directives. E.g. ``
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-invalid-v-if]
-- [no-invalid-v-else-if]
-- [no-parsing-error]
-
-
-[no-invalid-v-if]: no-invalid-v-if.md
-[no-invalid-v-else-if]: no-invalid-v-else-if.md
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-for.md b/docs/rules/no-invalid-v-for.md
deleted file mode 100644
index d98409313..000000000
--- a/docs/rules/no-invalid-v-for.md
+++ /dev/null
@@ -1,68 +0,0 @@
-# disallow invalid `v-for` directives (no-invalid-v-for)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-for](valid-v-for.md) rule.
-
-This rule checks whether every `v-for` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-for` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-- If the element which has the directive is a custom component, the component does not have `v-bind:key` directive. E.g. ``
-- The `v-bind:key` directive does not use the variables which are defined by the `v-for` directive. E.g. ``
-
-If the element which has the directive is a reserved element, this rule does not report even if the element does not have `v-bind:key` directive because it's not fatal error. [require-v-for-key] rule reports it.
-
-This rule does not check syntax errors in directives. [no-parsing-error] rule reports it.
-The following cases are syntax errors:
-
-- The directive's value is not the form `alias in expr`. E.g. ``
-- The alias is not LHS. E.g. ``
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [require-v-for-key]
-- [no-parsing-error]
-
-
-[require-v-for-key]: require-v-for-key.md
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-html.md b/docs/rules/no-invalid-v-html.md
deleted file mode 100644
index 30a459cfa..000000000
--- a/docs/rules/no-invalid-v-html.md
+++ /dev/null
@@ -1,40 +0,0 @@
-# disallow invalid `v-html` directives (no-invalid-v-html)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-html](valid-v-html.md) rule.
-
-This rule checks whether every `v-html` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-html` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-parsing-error]
-
-
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-if.md b/docs/rules/no-invalid-v-if.md
deleted file mode 100644
index 443a88976..000000000
--- a/docs/rules/no-invalid-v-if.md
+++ /dev/null
@@ -1,55 +0,0 @@
-# disallow invalid `v-if` directives (no-invalid-v-if)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-if](valid-v-if.md) rule.
-
-This rule checks whether every `v-if` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-if` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-- The directive is on the elements which have `v-else`/`v-else-if` directives. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-invalid-v-else]
-- [no-invalid-v-else-if]
-- [no-parsing-error]
-
-
-[no-invalid-v-else]: no-invalid-v-else.md
-[no-invalid-v-else-if]: no-invalid-v-else-if.md
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-model.md b/docs/rules/no-invalid-v-model.md
deleted file mode 100644
index 38d306e8b..000000000
--- a/docs/rules/no-invalid-v-model.md
+++ /dev/null
@@ -1,56 +0,0 @@
-# disallow invalid `v-model` directives (no-invalid-v-model)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-model](valid-v-model.md) rule.
-
-This rule checks whether every `v-model` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-model` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has the modifiers which are not supported. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-- The directive does not have the attribute value which is valid as LHS. E.g. ``
-- The directive is on unsupported elements. E.g. ``
-- The directive is on `` elements which their types are dynamic. E.g. ``
-- The directive is on `` elements which their types are `file`. E.g. ``
-- The directive's reference is iteration variables. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-parsing-error]
-
-
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-on.md b/docs/rules/no-invalid-v-on.md
deleted file mode 100644
index c961bf76f..000000000
--- a/docs/rules/no-invalid-v-on.md
+++ /dev/null
@@ -1,46 +0,0 @@
-# disallow invalid `v-on` directives (no-invalid-v-on)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-on](valid-v-on.md) rule.
-
-This rule checks whether every `v-on` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-on` directives in the following cases:
-
-- The directive does not have that event name. E.g. ``
-- The directive has invalid modifiers. E.g. ``
-- The directive does not have that attribute value and any verb modifiers. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-parsing-error]
-
-
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-once.md b/docs/rules/no-invalid-v-once.md
deleted file mode 100644
index 605da17a7..000000000
--- a/docs/rules/no-invalid-v-once.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# disallow invalid `v-once` directives (no-invalid-v-once)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-once](valid-v-once.md) rule.
-
-This rule checks whether every `v-once` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-once` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive has that attribute value. E.g. ``
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
diff --git a/docs/rules/no-invalid-v-pre.md b/docs/rules/no-invalid-v-pre.md
deleted file mode 100644
index 514df58f2..000000000
--- a/docs/rules/no-invalid-v-pre.md
+++ /dev/null
@@ -1,39 +0,0 @@
-# disallow invalid `v-pre` directives (no-invalid-v-pre)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-pre](valid-v-pre.md) rule.
-
-This rule checks whether every `v-pre` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-pre` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive has that attribute value. E.g. ``
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
diff --git a/docs/rules/no-invalid-v-show.md b/docs/rules/no-invalid-v-show.md
deleted file mode 100644
index a6513f04e..000000000
--- a/docs/rules/no-invalid-v-show.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# disallow invalid `v-show` directives (no-invalid-v-show)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-show](valid-v-show.md) rule.
-
-This rule checks whether every `v-show` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-show` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
-
-
-
-```
-
-## :wrench: Options
-
-Nothing.
-
-## :couple: Related rules
-
-- [no-parsing-error]
-
-
-[no-parsing-error]: no-parsing-error.md
diff --git a/docs/rules/no-invalid-v-text.md b/docs/rules/no-invalid-v-text.md
deleted file mode 100644
index 627a8ecdf..000000000
--- a/docs/rules/no-invalid-v-text.md
+++ /dev/null
@@ -1,48 +0,0 @@
-# disallow invalid `v-text` directives (no-invalid-v-text)
-
-- :warning: This rule was **deprecated** and replaced by [valid-v-text](valid-v-text.md) rule.
-
-This rule checks whether every `v-text` directive is valid.
-
-## :book: Rule Details
-
-This rule reports `v-text` directives in the following cases:
-
-- The directive has that argument. E.g. ``
-- The directive has that modifier. E.g. ``
-- The directive does not have that attribute value. E.g. ``
-
-This rule does not check syntax errors in directives because it's checked by [no-parsing-error] rule.
-
-:-1: Examples of **incorrect** code for this rule:
-
-```html
-
-
-
-
-
-
-
-```
-
-:+1: Examples of **correct** code for this rule:
-
-```html
-
-
'
- },
- {
- filename: 'test.vue',
- code: `\n \n \n \n`
- }
- ],
- invalid: [
- {
- filename: 'test.vue',
- code: '',
- errors: ["'v-else-if' directives require being preceded by the element which has a 'v-if' or 'v-else-if' directive."]
- },
- {
- filename: 'test.vue',
- code: '',
- errors: ["'v-else-if' directives require being preceded by the element which has a 'v-if' or 'v-else-if' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else-if' directives require being preceded by the element which has a 'v-if' or 'v-else-if' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else-if' directives require being preceded by the element which has a 'v-if' or 'v-else-if' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else-if' directives require being preceded by the element which has a 'v-if' or 'v-else-if' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else-if' directives require being preceded by the element which has a 'v-if' or 'v-else-if' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else-if' and 'v-if' directives can't exist on the same element."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else-if' and 'v-else' directives can't exist on the same element."]
- },
- {
- filename: 'test.vue',
- code: '
'
- },
- {
- filename: 'test.vue',
- code: `\n \n \n \n`
- }
- ],
- invalid: [
- {
- filename: 'test.vue',
- code: '',
- errors: ["'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive."]
- },
- {
- filename: 'test.vue',
- code: '',
- errors: ["'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else' directives require being preceded by the element which has a 'v-if' or 'v-else' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else' and 'v-if' directives can't exist on the same element. You may want 'v-else-if' directives."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-else' and 'v-else-if' directives can't exist on the same element."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Custom elements in iteration require 'v-bind:key' directives."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Custom elements in iteration require 'v-bind:key' directives."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Custom elements in iteration require 'v-bind:key' directives."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Custom elements in iteration require 'v-bind:key' directives."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["Expected 'v-bind:key' directive to use the variables which are defined by the 'v-for' directive."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-if' and 'v-else' directives can't exist on the same element. You may want 'v-else-if' directives."]
- },
- {
- filename: 'test.vue',
- code: '
',
- errors: ["'v-if' and 'v-else-if' directives can't exist on the same element."]
- },
- {
- filename: 'test.vue',
- code: '