vue-email-editor
vue-email-editor copied to clipboard
User Uploads: Disable Upload Image Button
I've implemented the user uploads feature. Now I want to disable Upload Image button.
I'm unable to find a way to disable the upload button and drag/drop feature from the user uploads? Anyone please guide?
i meet the same problem that set 'selectImage' event for custom image library, but it doesn't work currently.
emailEditor.value.editor.registerCallback(
"selectImage",
function (params, done) {
updateImageFunction.value = done;
isShowUpLoadImageModal.value = true;
}
);