n20-common-lib 2.9.44 → 2.9.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n20-common-lib",
3
- "version": "2.9.44",
3
+ "version": "2.9.45",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -231,7 +231,11 @@
231
231
  type="textarea"
232
232
  placeholder="请输入内容"
233
233
  :maxlength="formItem.maxlength || '150'"
234
- show-word-limit
234
+ :show-word-limit="
235
+ formItem.showWordLimit === null || formItem.showWordLimit === undefined
236
+ ? true
237
+ : formItem.showWordLimit
238
+ "
235
239
  v-bind="{ rows: 4, ...formItem }"
236
240
  :clearable="formItem.clearable === false ? false : true"
237
241
  @change="(value) => $emit('valueChange', value, key)"