vue-email-editor
vue-email-editor copied to clipboard
designTagsConfig
Adding designTagsConfig to the editors options stops the editor loading:
options:{
projectId: ****,
displayMode: 'email',
designTagsConfig: {
delimiter: ['[[[', ']]]']
}
}
Uncaught DOMException: Failed to execute 'postMessage' on 'Window': #<Object> could not be cloned. at http://editor.unlayer.com/embed.js?2:1:13252 at Array.forEach (<anonymous>) at e.value (http://editor.unlayer.com/embed.js?2:1:13174) at iframe.onload (http://editor.unlayer.com/embed.js?2:1:12257)
The following does work, guessed from the Merge Tags documentation:
this.$refs.emailEditor.editor.setDesignTagsConfig({
delimiter: ['[[[', ']]]']
})