diff --git a/components/form/ArrayList.vue b/components/form/ArrayList.vue index e51dd15b2f..36e1168e94 100644 --- a/components/form/ArrayList.vue +++ b/components/form/ArrayList.vue @@ -150,7 +150,9 @@ export default { methods: { add() { this.rows.push({ value: this.defaultAddValue }); - // this.queueUpdate(); + if (this.defaultAddValue) { + this.queueUpdate(); + } this.$nextTick(() => { const inputs = this.$refs.value;