File tree 2 files changed +2
-3
lines changed 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ module.exports = {
8
8
'@vue/standard'
9
9
] ,
10
10
rules : {
11
- 'no-console' : process . env . NODE_ENV === 'production' ? 'error' : 'off' ,
11
+ 'no-console' : 'off' ,
12
12
'no-debugger' : process . env . NODE_ENV === 'production' ? 'error' : 'off' ,
13
13
'generator-star-spacing' : 'off' ,
14
14
'no-mixed-operators' : 0 ,
@@ -32,7 +32,6 @@ module.exports = {
32
32
'vue/no-use-v-if-with-v-for' : 0 ,
33
33
'vue/html-closing-bracket-newline' : 0 ,
34
34
'vue/no-parsing-error' : 0 ,
35
- 'no-console' : 0 ,
36
35
'no-tabs' : 0 ,
37
36
'quotes' : [
38
37
2 ,
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ export default {
39
39
methods : {
40
40
handleChange ( e ) {
41
41
const value = e . target . value
42
- let len = getStrFullLength ( value )
42
+ const len = getStrFullLength ( value )
43
43
if ( len <= this . limit ) {
44
44
this . currentLimit = len
45
45
this . $emit ( 'change' , value )
You can’t perform that action at this time.
0 commit comments