我注意到ag-grid-vue和@ag-grid-enterprise/all-modules没有包含剪贴板模块。上下文菜单中缺少复制、带标题复制和粘贴。
/* Package.json */
"dependencies": {
"@ag-grid-enterprise/all-modules": "^22.1.2",
"@ag-grid-enterprise/clipboard": "^22.1.0",
"ag-grid-community": "^22.1.1",
"ag-grid-vue": "^22.1.1"发布于 2020-03-07 05:15:27
您可以尝试在package.json中安装"@ag-grid-enterprise/clipboard":"^22.1.1“。
然后将其添加到app.component.ts文件中
从‘ag-grid-community’导入{ModuleRegistry};从‘@ag-grid-enterprise/clipboard’导入{ClipboardModule};
ModuleRegistry.register(ClipboardModule as any);
这对我很有效。让我知道
https://stackoverflow.com/questions/60567516
复制相似问题