tinymce/tinymce-svelte

change event

alexewsv opened this issue · 2 comments

hi all,
I've have this code to use tinyMCE editor

<Editor
	scriptSrc="https://cdnjs.cloudflare.com/ajax/libs/tinymce/6.8.2/tinymce.min.js"
	conf={tinyMceConf}
	value={selectedItem?.html ?? ''}
	modelEvents="input change"
	on:change={(event) => {
		console.log({ event, value: event.detail.event.target.value }); // tried but got undefined.
	}}
/>

I need to use on change value, but my tried not work. Maybe I'm wrong somewhere. Please give me an advise. thankyou.

This issue is stale because it has been open 30 days with no activity. Please comment if you wish to keep this issue open or it will be closed in 7 days.

This issue was closed because it has been stalled for 7 days with no activity.