diff --git a/docs/rules/no-ref-object-reactivity-loss.md b/docs/rules/no-ref-object-reactivity-loss.md index 22bca127d..5f70a8303 100644 --- a/docs/rules/no-ref-object-reactivity-loss.md +++ b/docs/rules/no-ref-object-reactivity-loss.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-ref-object-reactivity-loss description: disallow usages of ref objects that can lead to loss of reactivity +since: v9.17.0 --- # vue/no-ref-object-reactivity-loss > disallow usages of ref objects that can lead to loss of reactivity -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details This rule reports the usages of ref objects causing the value to lose reactivity. @@ -49,6 +48,10 @@ const v5 = $computed(() => fn(count) /* ✓ GOOD */) Nothing. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v9.17.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-ref-object-reactivity-loss.js) diff --git a/docs/rules/no-setup-props-reactivity-loss.md b/docs/rules/no-setup-props-reactivity-loss.md index bc90415ec..ade3ee62c 100644 --- a/docs/rules/no-setup-props-reactivity-loss.md +++ b/docs/rules/no-setup-props-reactivity-loss.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-setup-props-reactivity-loss description: disallow usages that lose the reactivity of `props` passed to `setup` +since: v9.17.0 --- # vue/no-setup-props-reactivity-loss > disallow usages that lose the reactivity of `props` passed to `setup` -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details This rule reports the destructuring or member expression of `props` passed to `setup` causing the value to lose reactivity. @@ -96,6 +95,10 @@ Nothing. - [Guide - Composition API - Setup](https://vuejs.org/api/composition-api-setup.html) - [Vue RFCs - 0013-composition-api](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0013-composition-api.md) +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v9.17.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-setup-props-reactivity-loss.js) diff --git a/package.json b/package.json index ecc3c79fd..eb3750f4a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "9.16.1", + "version": "9.17.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {