Skip to content

Commit 68b7502

Browse files
committed
7.11.0
1 parent a4ac565 commit 68b7502

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

Diff for: docs/rules/no-deprecated-v-is.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-deprecated-v-is
55
description: disallow deprecated `v-is` directive (in Vue.js 3.1.0+)
6+
since: v7.11.0
67
---
78
# vue/no-deprecated-v-is
89

910
> disallow deprecated `v-is` directive (in Vue.js 3.1.0+)
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
- :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.
1313

1414
## :book: Rule Details
@@ -43,6 +43,10 @@ Use [`is` attribute with `vue:` prefix](https://v3.vuejs.org/api/special-attribu
4343
- [API - v-is](https://v3.vuejs.org/api/directives.html#v-is)
4444
- [API - v-is (Old)](https://github.com/vuejs/docs-next/blob/008613756c3d781128d96b64a2d27f7598f8f548/src/api/directives.md#v-is)
4545

46+
## :rocket: Version
47+
48+
This rule was introduced in eslint-plugin-vue v7.11.0
49+
4650
## :mag: Implementation
4751

4852
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-deprecated-v-is.js)

Diff for: docs/rules/no-this-in-before-route-enter.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-this-in-before-route-enter
55
description: disallow `this` usage in a `beforeRouteEnter` method
6+
since: v7.11.0
67
---
78
# vue/no-this-in-before-route-enter
89

910
> disallow `this` usage in a `beforeRouteEnter` method
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
Because lack of `this` in the `beforeRouteEnter` [(docs)](https://router.vuejs.org/guide/advanced/navigation-guards.html#in-component-guards). This behavior isn't obvious, so it's pretty easy to make a `TypeError`. Especially during some refactor.
@@ -60,6 +59,10 @@ When [vue-router](https://router.vuejs.org/) is not installed.
6059

6160
[vue-router - in-component-guards](https://router.vuejs.org/guide/advanced/navigation-guards.html#in-component-guards)
6261

62+
## :rocket: Version
63+
64+
This rule was introduced in eslint-plugin-vue v7.11.0
65+
6366
## :mag: Implementation
6467

6568
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-this-in-before-route-enter.js)

Diff for: package.json

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

0 commit comments

Comments
 (0)