добрый день
есть еще одна проблема с вводом в input
я даже класс меняю, но данные не сохраняются
визуально все ок
const qwewqe=()=>{
let timePause=200
const phrase=document.querySelector('input#phrase')
phrase.value='234'
phrase.classList.remove('mui--is-untouched')
phrase.classList.add('mui--is-touched')
const event= new Event('change', { bubbles: true })
phrase.dispatchEvent(event)
}
{/* <input type="text" id="phrase" name="phrase" placeholder="Binding Phrase" class="mui--is-untouched mui--is-dirty mui--is-not-empty"></input> */}
{/* <input type="text" id="phrase" name="phrase" placeholder="Binding Phrase" class="mui--is-dirty mui--is-not-empty mui--is-touched"></input> */}