@gitlab/ui
Version:
GitLab UI Components
24 lines (20 loc) • 646 B
JavaScript
import examples from './examples';
var description = "# Form Select\n\nForm select component used to select from group of options in a form.\n";
var form_select_documentation = {
description,
examples,
followDesignSystem: true,
bootstrapComponent: 'b-form-select',
events: [{
event: 'change',
description: 'Emitted with the select value changes via user interaction.'
}, {
event: 'input',
description: 'Emitted with the select value changes.'
}],
slots: [{
name: 'first',
description: 'Slot to place option tags above options provided via options prop'
}]
};
export default form_select_documentation;