Piotr
Results
1
comments of
Piotr
I found a workaround that works in my case: ```vue onMounted(() => { const select = document.getElementById(props.id) if (select) { select.addEventListener('change', (e) => { e.stopPropagation() value.value = e.target?.value }, true)...