信息提示
成功提示
确认对话框
错误提示
警告提示
```
--------------------------------
### FaTable Props
Source: https://github.com/fantastic-admin/basic/blob/main/packages/components/src/basic/table/README.md
Configuration options for the FaTable component.
```APIDOC
## FaTable Props
| Prop | Type | Default | Description |
|---|---|---|---|
| `columns` | `TableColumn[]` | **Required** | Table column configuration. |
| `data` | `TData[]` | **Required** | Table data. |
| `border` | `boolean` | `false` | Whether to display outer borders and cell vertical dividers. |
| `caption` | `string` | - | Table title. |
| `columnVisibility` | `boolean` | `false` | Whether to display a column visibility control button on the right side of the toolbar. |
| `defaultSorting` | `TableSortingState` | `[]` | Initial sorting state, only effective when uncontrolled. |
| `defaultExpanded` | `TableExpandedState` | `{}` | Initial expanded state, only effective when uncontrolled. |
| `emptyText` | `string` | `'暂无数据'` | Text to display when there is no data. |
| `enableMultiSort` | `boolean` | `true` | Whether to allow multi-column sorting. |
| `enableSortingRemoval` | `boolean` | `true` | Whether to allow clearing the sort. |
| `expanded` | `TableExpandedState` | - | Controlled expanded state. |
| `getRowId` | `TableOptions