<el-form-item label="主廚描述"> <el-input v-model="chef_desc" :autosize="{ minRows: 2, maxRows: 4}" type="textarea" maxlength="128" @input="descInput" placeholder="請輸入..." /> <span class="numberV" style="position: absolute; right: 10px;bottom: 0;">{{txtVal}}/128</span> </el-form-item>
data() { return { txtVal: 0, } }, methods: { /** * 統計textarea 字數 */ descInput() { this.txtVal = this.chef_desc.length; } }