vue 手机号正则表达式

let reg = /^1[0-9]{10}$/
if(!reg.test(this.inputphone)){
  this.$message.error('请输入正确手机号!');
  return;
}

你可能感兴趣的:(个人,vue.js,正则表达式,前端)