在移动端,实现input框获得焦点的同时不会唤起手机键盘。亲测有效

 <input type="text" placeholder="收货地址" v-model="address3" @focus.prevent="showcountF" ref="address" />
 showcountF(){
      this.showcount=true;
       this.$refs.address.setAttribute('readonly', 'readonly');
    },

 

Logo

前往低代码交流专区

更多推荐