The problems encountered in front-end development will be updated here if they are encountered in personal projects.

We will update here if we encounter any problems encountered during development in personal projects.

1. When encountering users who can only input numbers, the method needed

Bind @inpnt="method" in the input box

It can be achieved by writing the following code in the method.

handleInput(e) {
      this.formInline.code = e.replace(/[^\d]/g, '')
    },

 

Guess you like

Origin blog.csdn.net/sqLeiQ/article/details/107529543