Browse Source

fix: input show-word-limit default false (#1203)

Lei Wang 3 years ago
parent
commit
da80403c5e
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/packages/__VUE/input/index.taro.vue
  2. 1 1
      src/packages/__VUE/input/index.vue

+ 1 - 1
src/packages/__VUE/input/index.taro.vue

@@ -250,7 +250,7 @@ export default create({
     },
     showWordLimit: {
       type: Boolean,
-      default: true
+      default: false
     },
     autofocus: {
       type: Boolean,

+ 1 - 1
src/packages/__VUE/input/index.vue

@@ -250,7 +250,7 @@ export default create({
     },
     showWordLimit: {
       type: Boolean,
-      default: true
+      default: false
     },
     autofocus: {
       type: Boolean,