摘要: vue子组件和父组件之间的传值和方法的相互调用 事件调用:1. 子组件调用父组件事件 this.$parent.closeCurrentView();//子 父组件:定义closeCurrentView事件 2. 父组件调用子组件事件 this.$refs.orderlist.parentHandl 阅读全文
posted @ 2020-09-16 22:22 诺谟 阅读(2547) 评论(0) 推荐(0)
摘要: 以组件的形式引入项目中 组件: <template> <div> <div :class="className" :id="id" :style="{height:height,width:width}"></div> </div> </template> <script> // 引入基本模板 le 阅读全文
posted @ 2020-09-16 21:18 诺谟 阅读(1792) 评论(0) 推荐(0)
你好啊