uni-app(Vue) 学习笔记

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>

  

posted @ 2020-02-23 12:05  yesicoo  阅读(223)  评论(0编辑  收藏  举报