-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Description
just upgraded to framework7-vue: ^6.3.1 (the ViteJS install from the CLI)
The Text editor is not firing events anymore, Could you have a look @nolimits4web ?
My code hasn’t changed from the previous version 5, it doesn’t set the value anymore when a change has been made. I tested the other events and they don’t fire either.
<f7-list-input
type=“texteditor”
:textEditorParams="{
linkUrlText: $LanguageHelper.translate(‘INSERT_LINK_URL’),
buttons: [‘bold’, ‘italic’, ‘underline’, ‘strikeThrough’, ‘link’],
}"
:label="$LanguageHelper.translate(‘MESSAGE’)"
:placeholder="$LanguageHelper.translate(‘ENTER_HERE’)"
@texteditor:change="(v) => message = v"
/>
“framework7-vue”: “^5.7.5”: The testing function is called
@texteditor:change="(v) => { testing() }"
“framework7-vue”: “^6.3.1”: The testing function is not called
@texteditor:change="(v) => { testing() }"