From ac7356562a2dc47812ec04fe92112664610fcdc3 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Tue, 30 Jan 2024 21:02:51 +0900 Subject: [PATCH] 9.21.0 --- docs/rules/no-restricted-v-on.md | 7 +++++-- docs/rules/require-explicit-slots.md | 7 +++++-- package.json | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/docs/rules/no-restricted-v-on.md b/docs/rules/no-restricted-v-on.md index 1b73bd57d..2873caf1a 100644 --- a/docs/rules/no-restricted-v-on.md +++ b/docs/rules/no-restricted-v-on.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/no-restricted-v-on description: disallow specific argument in `v-on` +since: v9.21.0 --- # vue/no-restricted-v-on > disallow specific argument in `v-on` -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details This rule allows you to specify `v-on` argument names that you don't want to use in your application. @@ -105,6 +104,10 @@ The following properties can be specified for the object. [vue/no-restricted-static-attribute]: ./no-restricted-static-attribute.md [vue/no-restricted-v-bind]: ./no-restricted-v-bind.md +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v9.21.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/no-restricted-v-on.js) diff --git a/docs/rules/require-explicit-slots.md b/docs/rules/require-explicit-slots.md index c3b78ad8d..bffd1e3e8 100644 --- a/docs/rules/require-explicit-slots.md +++ b/docs/rules/require-explicit-slots.md @@ -3,13 +3,12 @@ pageClass: rule-details sidebarDepth: 0 title: vue/require-explicit-slots description: require slots to be explicitly defined +since: v9.21.0 --- # vue/require-explicit-slots > require slots to be explicitly defined -- :exclamation: ***This rule has not been released yet.*** - ## :book: Rule Details This rule enforces all slots used in the template to be defined once either in the `script setup` block with the [`defineSlots`](https://vuejs.org/api/sfc-script-setup.html) macro, or with the [`slots property`](https://vuejs.org/api/options-rendering.html#slots) in the Options API. @@ -66,6 +65,10 @@ defineComponent({ Nothing. +## :rocket: Version + +This rule was introduced in eslint-plugin-vue v9.21.0 + ## :mag: Implementation - [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/require-explicit-slots.js) diff --git a/package.json b/package.json index 4699f3906..63cb12306 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-vue", - "version": "9.20.1", + "version": "9.21.0", "description": "Official ESLint plugin for Vue.js", "main": "lib/index.js", "scripts": {