摘要: 如何在子组件中修改父组件的值第一步:首先得保证父组件中有值吧这是userManage.vue 1 data(){ 2 return{ 3 dialogCreate:'false' 4 } 5 } 第二步:在父组件中引用子组件 1 import Form from './userCreate' 第三步 阅读全文
posted @ 2021-03-16 18:36 武小妞 阅读(9010) 评论(1) 推荐(0) 编辑
摘要: this.$refs.toast.showToast('提示文案') 一、npm 安装 // 当前最新版本 1.2.0 npm install vue-layer-mobile // 如新版遇到问题可回退旧版本 npm install vue-layer-mobile@1.0.0 二、调整配置:因为 阅读全文
posted @ 2021-03-16 18:16 武小妞 阅读(777) 评论(0) 推荐(0) 编辑
摘要: WXML部分 1 <view class="index"> 2 3 <!-- 数据展示区 --> 4 <scroll-view 5 class="scroll-list" 6 scroll-y 7 style="height: {{windowHeight - bottomHeight}}px" 8 阅读全文
posted @ 2021-03-16 17:42 武小妞 阅读(878) 评论(0) 推荐(0) 编辑