# textarea > **NOTE** > > This component is supported since API version 4. Updates will be marked with a superscript to indicate their earliest API version. The **\ ``` ```css /* xxx.css */ .textarea { placeholder-color: gray; } ``` ```js // xxx.js import prompt from '@system.prompt'; export default { change(e){ prompt.showToast({ message: 'value: ' + e.text + ', lines: ' + e.lines + ', height: ' + e.height, duration: 3000, }); } } ``` ![000000](figures/000000.png)