ymwu

导航

2019年5月21日 #

vue bus组件传值

摘要: 父组件 event(){ this.$bus.emit("edit", title, item);)}//edit为对应的子组件名称,title,item为向子组件传的值 子组件 接收 在mounted this.$bus.on("edit", (title, obj) => { //title,o 阅读全文

posted @ 2019-05-21 14:23 愤怒的小鸟啊啊啊 阅读(116) 评论(0) 推荐(0) 编辑

多种形式数组去重

摘要: let shortData=[]; //临时数组 this.dynamicTags //最后所需数组 // 数组去重展示 for (let i = 0; i < shortData.length; i++) { //循环遍历当前数组 等于-1说明shortDatap[i]在所需数组中不存在 if ( 阅读全文

posted @ 2019-05-21 14:10 愤怒的小鸟啊啊啊 阅读(101) 评论(0) 推荐(0) 编辑