@gitlab/ui
Version:
GitLab UI Components
27 lines (23 loc) • 861 B
JavaScript
import examples from './examples';
var description = "**Note:** This needs a `v-model` property to work correctly.\nSee [this issue](https://github.com/bootstrap-vue/bootstrap-vue/issues/1915) on Bootstrap Vue for\nmore information.\n";
var form_textarea_documentation = {
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.`
}]
};
export default form_textarea_documentation;