Skip to content

Commit 8c3031e

Browse files
committed
7.14.0
1 parent 23be6e4 commit 8c3031e

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

docs/rules/require-expose.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ pageClass: rule-details
33
sidebarDepth: 0
44
title: vue/require-expose
55
description: require declare public properties using `expose`
6+
since: v7.14.0
67
---
78
# vue/require-expose
89

910
> require declare public properties using `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 enforces the component to explicitly declare the exposed properties to the component using `expose`. You can use `expose` to control the internal properties of a component so that they cannot be referenced externally.
@@ -114,6 +113,10 @@ Nothing.
114113

115114
- [Vue RFCs - 0042-expose-api](https://github.com/vuejs/rfcs/blob/master/active-rfcs/0042-expose-api.md)
116115

116+
## :rocket: Version
117+
118+
This rule was introduced in eslint-plugin-vue v7.14.0
119+
117120
## :mag: Implementation
118121

119122
- [Rule source](https://github.com/vuejs/eslint-plugin-vue/blob/master/lib/rules/require-expose.js)

package.json

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

0 commit comments

Comments
 (0)