We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a95cb8 commit 36ca3ddCopy full SHA for 36ca3dd
src/components/EmailEditor.vue
@@ -81,7 +81,7 @@ export default defineComponent({
81
const options = toRaw(this.options) || {};
82
83
if (this.appearance) {
84
- options.appearance = this.appearance;
+ options.appearance = toRaw(this.appearance);
85
}
86
87
if (this.locale) {
@@ -93,7 +93,7 @@ export default defineComponent({
93
94
95
if (this.tools) {
96
- options.tools = this.tools;
+ options.tools = toRaw(this.tools);
97
98
99
const rawEditor = unlayer.createEditor({
0 commit comments