Skip to content

Commit

Permalink
Docs: fix spelling mistake (#809)
Browse files Browse the repository at this point in the history
  • Loading branch information
3santiago3 authored and mysticatea committed Feb 14, 2019
1 parent a3707b1 commit b1699ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/rules/valid-v-else.md
Expand Up @@ -18,8 +18,8 @@ This rule reports `v-else` directives in the following cases:
- The directive has that argument. E.g. `<div v-if="foo"></div><div v-else:aaa></div>`
- The directive has that modifier. E.g. `<div v-if="foo"></div><div v-else.bbb></div>`
- The directive has that attribute value. E.g. `<div v-if="foo"></div><div v-else="bar"></div>`
- The directive is on the elements that the previous element don't have `v-if`/`v-if-else` directives. E.g. `<div v-else></div>`
- The directive is on the elements which have `v-if`/`v-if-else` directives. E.g. `<div v-if="foo" v-else></div>`
- The directive is on the elements that the previous element don't have `v-if`/`v-else-if` directives. E.g. `<div v-else></div>`
- The directive is on the elements which have `v-if`/`v-else-if` directives. E.g. `<div v-if="foo" v-else></div>`

<eslint-code-block :rules="{'vue/valid-v-else': ['error']}">

Expand Down

0 comments on commit b1699ce

Please sign in to comment.