fix(upload img): fix recieve url

This commit is contained in:
merlin
2025-11-06 11:21:56 +08:00
parent e64cb74c9d
commit 944b478b07

View File

@@ -51,7 +51,7 @@ onMounted(() => {
console.log(response);
if (response.code === 200) {
console.log('上传成功');
vditor.insertValue('![](' + response.data.data + ')')
vditor.insertValue('![](' + response.data + ')')
}
}
},