Connecting TinyMCE to livewire form

What seems to be the problem:
I can’t figure how to link my tinyMCE editors to livewire. I have a large centralised configuration for my editors and I don’t want to repeat my code for all of the editors as they work in the same way.
I have read the folowing for the CKEditors

CKEDITOR.replace(’#textarea’).on(‘change’, function(e){
@this.set(’{{ $myTextArea }}’, e.editor.getData());
});

I would say the above code targets the editors spreifically and sets the variable for livewire
Does anyone know how the same can be done for TinyMCE?

Steps to Reproduce:

Are you using the latest version of Livewire:
2.2

Do you have any screenshots or code examples: