Skip to content
This repository was archived by the owner on Jan 19, 2026. It is now read-only.

Latest commit

 

History

History
34 lines (22 loc) · 890 Bytes

File metadata and controls

34 lines (22 loc) · 890 Bytes

TableActions

Toolbar for batch table actions.

import { TableActions } from '@atlas/ui';

Usage

<TableActions :selectedCount="selected.length" :menuItems="actions" @action="onAction" />

API

Props

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.

Slots

None.

Events

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.