Skip to content

Commit 20eaee7

Browse files
committed
8.1.0
1 parent da3e481 commit 20eaee7

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

docs/rules/no-child-content.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-child-content
55
description: disallow element's child contents which would be overwritten by a directive like `v-html` or `v-text`
6+
since: v8.1.0
67
---
78
# vue/no-child-content
89

910
> disallow element's child contents which would be overwritten by a directive like `v-html` or `v-text`
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
1212
- :bulb: Some problems reported by this rule are manually fixable by editor [suggestions](https://eslint.org/docs/developer-guide/working-with-rules#providing-suggestions).
1313

1414
## :book: Rule Details
@@ -47,6 +47,10 @@ This rule reports child content of elements that have a directive which overwrit
4747
- [`v-html` directive](https://v3.vuejs.org/api/directives.html#v-html)
4848
- [`v-text` directive](https://v3.vuejs.org/api/directives.html#v-text)
4949

50+
## :rocket: Version
51+
52+
This rule was introduced in eslint-plugin-vue v8.1.0
53+
5054
## :mag: Implementation
5155

5256
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-child-content.js)

docs/rules/no-expose-after-await.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/no-expose-after-await
55
description: disallow asynchronously registered `expose`
6+
since: v8.1.0
67
---
78
# vue/no-expose-after-await
89

910
> disallow asynchronously registered `expose`
1011
11-
- :exclamation: <badge text="This rule has not been released yet." vertical="middle" type="error"> ***This rule has not been released yet.*** </badge>
12-
1312
## :book: Rule Details
1413

1514
This rule reports the `expose()` after `await` expression.
@@ -45,6 +44,10 @@ Nothing.
4544
- [Vue RFCs - 0042-expose-api](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0042-expose-api.md)
4645
- [Vue RFCs - 0013-composition-api](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0013-composition-api.md)
4746

47+
## :rocket: Version
48+
49+
This rule was introduced in eslint-plugin-vue v8.1.0
50+
4851
## :mag: Implementation
4952

5053
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-expose-after-await.js)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-vue",
3-
"version": "8.0.3",
3+
"version": "8.1.0",
44
"description": "Official ESLint plugin for Vue.js",
55
"main": "lib/index.js",
66
"scripts": {

0 commit comments

Comments
 (0)