UNPKG

vxe-table

Version:

一个基于 vue 的 PC 端表格组件,支持增删改查、虚拟滚动、懒加载、快捷菜单、数据校验、树形结构、打印导出、表单渲染、数据分页、虚拟列表、模态窗口、自定义模板、渲染器、贼灵活的配置项、扩展接口等...

14 lines (11 loc) 359 B
import { MenuLinkParams } from './menu' declare function menuFunc (params: MenuLinkParams, event: any): any; /** * 全局快捷菜单 */ export class menus { mixin(map: { [type: string]: typeof menuFunc }): menus; get(type: string): typeof menuFunc; add(type: string, callback: typeof menuFunc): menus; delete(type: string): menus; }