vue项目中 处理身份证号**

  

//采用mand-mobile 使用{{}}不合适,没有使用过滤器

//data中定义数据
 data() {
	return{
		id:'462310240234023434'
	}
}
//计算属性中处理data数据
computed:{
    replaceStatusId(){
      return this.id.replace(/^(.{4})(?:\d+)(.{4})$/, "$1 **** **** $2");
      }
  }

实现效果:
vue项目中 处理身份证号**_第1张图片

你可能感兴趣的:(vue)