UNPKG

@gitlab/ui

Version:
31 lines (29 loc) 732 B
import examples from './examples'; import description from './form_textarea.md'; export default { description, examples, bootstrapComponent: 'b-form-textarea', events: [ { event: 'input', args: [ { arg: 'value', description: '(String)', }, ], description: 'Emitted to update the v-model', }, { event: 'update', args: [ { arg: 'value', description: '(String)', }, ], description: `Triggered by user interaction. Emitted after any formatting (not including 'trim' or 'number' props). Useful for getting the currently entered value when the 'debounce' or 'lazy' props are set.`, }, ], };