uni-app(Vue) 学习笔记

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>

以上是 uni-app(Vue) 学习笔记 的全部内容, 来源链接: utcz.com/z/374726.html

回到顶部