// https://github.com/markmead/alpinejs-textarea-autogrow
export default function (Alpine) {
Alpine.directive('grow', (el) => {
el.addEventListener('input', () => {
el.style.height = 'auto'
el.style.height = `${el.scrollHeight}px`
})
})
}
<textarea x-data x-grow></textarea>