Update Typescript cast

This commit is contained in:
Ramon Wenger 2022-10-11 10:43:20 +02:00
parent 5ead2c9af6
commit 4c6b1d3d0a
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@
ListItem ListItem
], ],
onUpdate: () => { onUpdate: () => {
const text=(<Editor>this.editor).getHTML(); const text=(this.editor as Editor).getHTML();
this.$emit('input', text); this.$emit('input', text);
this.$emit('change-text', text); this.$emit('change-text', text);
} }