- 000
I spotted an unexpected behaviour using x-modelable. If the variables name in x-modelable equals the name used in x-model it won't work.
Example:
<div
x-data="{items: []}"
x-init="setTimeout(() => items.push({id: Date.now(), name: 'TEST'}), 1000)">
This snippet will work as e...