From e1747fc7b4ebccfe1e6949973be035a083e73f21 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Wed, 10 May 2023 22:54:38 +0900 Subject: [PATCH] 9.12.0 --- docs/rules/no-root-v-if.md | 8 +++++--- package.json | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/rules/no-root-v-if.md b/docs/rules/no-root-v-if.md index 0899dc036..bf32003a3 100644 --- a/docs/rules/no-root-v-if.md +++ b/docs/rules/no-root-v-if.md @@ -3,14 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-root-v-if description: disallow `v-if` directives on root element +since: v9.12.0 --- - # vue/no-root-v-if > disallow `v-if` directives on root element -- :exclamation: ***This rule has not been released yet.*** - This rule reports template roots with `v-if`. Rendering of the whole component could be made conditional in the parent component (with a `v-if` there) instead. ## :book: Rule Details @@ -31,6 +29,10 @@ This rule reports the template root in the following cases: Nothing. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v9.12.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-root-v-if.js) diff --git a/package.json b/package.json index ea0ce229d..a1b04d855 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "9.11.1", + "version": "9.12.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {