tinymce-svelte icon indicating copy to clipboard operation
tinymce-svelte copied to clipboard

change event

Open alexewsv opened this issue 2 years ago • 0 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.

alexewsv avatar Dec 25 '23 09:12 alexewsv