File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "root": true,
2
+ "root": true,
3
3
"env": {
4
4
"browser": true,
5
5
"node": true,
8
8
"es6": true
9
9
},
10
10
"parserOptions": {
11
- "parser": "babel-eslint"
11
+ "parser": "babel-eslint"
12
12
},
13
13
"extends": ["plugin:vue/recommended", "prettier"],
14
14
"rules": {
19
19
"semi": ["error", "always"],
20
20
"vue/require-prop-types": "off",
21
21
"vue/require-default-prop": "off",
22
- "vue/no-reserved-keys": "off"
22
+ "vue/no-reserved-keys": "off",
23
+ "vue/prop-name-casing": "off"
23
24
}
24
- }
25
+ }
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export default {
41
41
tabBarPosition : PropTypes . string . def ( 'top' ) ,
42
42
activeKey : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . number ] ) ,
43
43
defaultActiveKey : PropTypes . oneOfType ( [ PropTypes . string , PropTypes . number ] ) ,
44
- propsSymbol : PropTypes . any ,
44
+ __propsSymbol__ : PropTypes . any ,
45
45
} ,
46
46
data ( ) {
47
47
const props = getOptionProps ( this ) ;
You can’t perform that action at this time.
0 commit comments