mirror of
https://github.com/lingble/chatwoot.git
synced 2025-11-01 11:37:58 +00:00
This PR adds dropdown primitives to help compose custom dropdowns across the app. The following the sample usage --------- Co-authored-by: Pranav <pranav@chatwoot.com>
14 lines
367 B
JavaScript
14 lines
367 B
JavaScript
import DropdownBody from './DropdownBody.vue';
|
|
import DropdownContainer from './DropdownContainer.vue';
|
|
import DropdownItem from './DropdownItem.vue';
|
|
import DropdownSection from './DropdownSection.vue';
|
|
import DropdownSeparator from './DropdownSeparator.vue';
|
|
|
|
export {
|
|
DropdownBody,
|
|
DropdownContainer,
|
|
DropdownItem,
|
|
DropdownSection,
|
|
DropdownSeparator,
|
|
};
|