You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I have two editors on one page both are looking at the same model. For example, I have: <mc-wysiwyg v-model="entities.newEntity.header"></mc-wysiwyg>
and <mc-wysiwyg v-model="entities.newEntity.footer"></mc-wysiwyg>
Despite having different models, second editor (footer) takes the value from the first editor (header).
How can I fix that?
The text was updated successfully, but these errors were encountered:
When I have two editors on one page both are looking at the same model. For example, I have: <mc-wysiwyg v-model="entities.newEntity.header"></mc-wysiwyg> and <mc-wysiwyg v-model="entities.newEntity.footer"></mc-wysiwyg>
Despite having different models, second editor (footer) takes the value from the first editor (header).
I have this same bug. I had to add a v-if to each editor if not present on at the same time. If you need both present at the same time I believe you are out of luck.
Hi,
When I have two editors on one page both are looking at the same model. For example, I have:
<mc-wysiwyg v-model="entities.newEntity.header"></mc-wysiwyg>
and
<mc-wysiwyg v-model="entities.newEntity.footer"></mc-wysiwyg>
Despite having different models, second editor (footer) takes the value from the first editor (header).
How can I fix that?
The text was updated successfully, but these errors were encountered: