当在el-aidlog中给某个标签使用ref属性后,获取时总是显示undefined,原因是在获取时el-dialog还未渲染完成。因此可使用nextTick中再获取
this.$nextTick(() => { this.$refs[‘image-upload‘].showFileList() })
2024-01-08 08:43:10
当在el-aidlog中给某个标签使用ref属性后,获取时总是显示undefined,原因是在获取时el-dialog还未渲染完成。因此可使用nextTick中再获取
this.$nextTick(() => { this.$refs[‘image-upload‘].showFileList() })