input verifies the input length. When the input length exceeds 8 digits, you will be prompted to return the previous data
.<input type="text" v-model="data" @input="verifyData">
verifyData() {
// , , ,
if (this.data.length > 8) {
Toast("");
return this.data;
}
},