UNPKG

alpinejs-textarea-grow

Version:

Autogrow textarea elements with Alpine JS

10 lines (8 loc) 206 B
export default function (Alpine) { Alpine.directive('grow', (el) => { el.addEventListener('input', () => { el.style.height = 'auto' el.style.height = `${el.scrollHeight}px` }) }) }