Vuido
  • About Vuido
  • Introduction
  • Installation
    • Manual Configuration
    • Production Builds
  • Usage
    • Window Template
    • Script Section
    • Interpolations
    • Computed Properties
    • Conditionals and Loops
    • Handling User Input
    • Managing Windows
    • Displaying Dialogs
    • Custom Components
    • Using libui Classes
    • Common Attributes
  • Packaging
  • Built-in Components
    • Window
    • Containers
      • Box
      • Form
      • Group
      • Tab
    • Widgets
      • Area
        • AreaGroup
        • AreaPath
        • AreaText
      • Button
      • Checkbox
      • ColorButton
      • Combobox
      • DatePicker
      • DateTimePicker
      • DropdownList
      • FontButton
      • ProgressBar
      • RadioButtons
      • Separator
      • Slider
      • Spinbox
      • Text
      • TextArea
      • TextInput
      • TimePicker
Powered by GitBook
On this page
  • Attributes
  • readonly
  • value
  • Events
  • input
  • Example
  1. Built-in Components
  2. Widgets

TextArea

An input widget for editing multiple lines of text.

TextArea supports the v-model directive.

TextArea uses the \n character as the line separator, regardless of the platform on which the application runs.

Attributes

readonly

type: Boolean

Whether the widget is read-only or editable.

value

type: String

The current text displayed in the widget.

Events

input

Called when the text is changed. The current text is passed as an argument.

Example

<TextArea v-model="text"/>
PreviousTextNextTextInput

Last updated 6 years ago