A textarea element to input multi-line text.
Simple example for GTextarea
<GTextarea placeholder="enter text" />
config for global setting , set on nuxt.config
glorious:{
components:{
textarea:{
props:{
color:'green',
placeholder:'',
title:'',
required:false,
disabled:false,
rows:5,
}
}
}
}
| Prop | Type | Default |
|---|---|---|
| model value | any | |
| color | orange | green | blue | gray | red | primary | green |
| placeholder | string | |
| title | string | |
| required | boolean | false |
| error | string | | |
| rows | number | 5 |
| disabled | boolean | false |