<el-input class="radioInput" v-model.number="ruleForm.rate" @keyup.native="handleVerifyRate" ></el-input>
// 驗證比例,只能輸入整數 handleVerifyRate(){ if(!Number.isInteger(this.ruleForm.rate)){ this.$message.error("出庫比例填寫整數!"); } },