Toolbar for batch table actions.
import { TableActions } from '@atlas/ui';<TableActions :selectedCount="selected.length" :menuItems="actions" @action="onAction" />| Name | Type | Default | Description |
|---|---|---|---|
| selectedCount | number | null |
null |
Number of selected rows displayed next to actions. |
| menuItems | MenuItem[] |
[] |
Defines available actions. Each item supports label, action, optional tooltip, disabled, and nested children arrays for submenus. |
None.
| Name | Payload | Description |
|---|---|---|
| action | string |
Emitted when an action is chosen. 'clear' is emitted when the clear button is pressed. |
Refer to the PrimeVue Menu API for menu item options.