摘要: Father.vue <template> <view> <view @click="show">我是父组件按钮</view> <child :isShow.sync="isShow" v-if="isShow"></child> </view> </template> <script> impor 阅读全文
posted @ 2020-05-31 16:20 joesmile 阅读(611) 评论(0) 推荐(0) 编辑
摘要: 1.父传子 Father.vue <template> <view> <Son :toSonData="toSonData"></Son> </view> </template> <script> import Son from "./Son.vue"; export default{ data() 阅读全文
posted @ 2020-05-31 10:35 joesmile 阅读(3044) 评论(0) 推荐(0) 编辑