Skip to content

Latest commit

 

History

History

table

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

@aomao/plugin-table

表格插件

安装

$ yarn add @aomao/plugin-table

添加到引擎

import Engine, { EngineInterface } from '@aomao/engine';
import Table, { TableComponent } from '@aomao/plugin-table';

new Engine(...,{ plugins:[Table] , cards:[TableComponent]})

可选项

快捷键

默认无快捷键

//快捷键,key 组合键,args,执行参数,[rows?: string, cols?: string] 行数:默认3行,列数:默认3列
hotkey?:string | {key:string,args:Array<string>};//默认无

//使用配置
new Engine(...,{
    config:{
        "table":{
            //修改快捷键
            hotkey:{
                key:"mod+t",
                args:[5,5]
            }
        }
    }
 })

溢出展示,需要开启 enableScroll 才能生效

overflow?: {
    // 相对编辑器左侧最大能展示的宽度
    maxLeftWidth?: () => number;
    // 相对于编辑器右侧最大能展示的宽度
    maxRightWidth?: () => number;
};

最小列宽

colMinWidth: number; //默认40

最小行高

rowMinHeight: number; //默认30

一次最大插入的行/列

maxInsertNum: number; //默认50

是否启用滚动条

enableScroll: boolean; //默认true

命令

//可携带两个参数,行数,列数,都是可选的
engine.command.execute('table', 5, 5);