vue图片上传组件使用详解(2)

// 删除图片 delImg (index) { this.imgList.splice(index, 1); this.fileList.splice(index, 1); this.upNum = this.imgList.length; let imgAll = this.imgList.join(','); this.$emit('input', imgAll); },

最后我在组件中监听了图片改变

watch: { imgList () { this.$emit('changeNum'); //触发父组件中验证资料是否完整的方法 } },

就是这样了,一个简易的上传组件(写的不是很好,轻喷),还有可以优化的地方,后面改完再看看吧

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/35d91826709a9313295b7bab3b142dbd.html