1,父组件调用子组件方法:
<xqSearchInput ref="xqSearch" placeholder="车牌/手机号/卡号" :showscan="false" @input="searchInput"></xqSearchInput> this.$refs.xqSearch.setValue("test");
2,向子组件prop赋值 bool类型需要绑定 :showscan="false",传值为字符类型
3,避免滚动穿透
弹出视图 <view @touchmove.stop.prevent = ""> .... </vew>