Vue Data GridAG Grid Vue Error #200

Full Error Text

Full error message cannot be shown because there are missing parameters in the URL. Please follow the full link from the developer tool logs.
Unable to use undefined as undefinedModule is not registered.  Check if you have registered the module:

import { ModuleRegistry } from 'ag-grid-community'; 
import { undefinedModule } from 'ag-grid-community'; 

ModuleRegistry.registerModules([ undefinedModule ]); 

For more info see: https://www.ag-grid.com/javascript-data-grid/modules/
To show this error text in the dev console, import the ValidationModule.

AG Grid Modules Copy

AG Grid features are split into Modules to help reduce application bundle size by enabling developers to cherry pick the features they require. This error occurs when a feature is used without the feature's module being registered first.

For a comprehensive guide on AG Grid Modules please see Modules.

Minimized Bundle Size Copy

If you are concerned about bundle size, only import the modules for the features you require, i.e the missing module in the error above.

We recommend using the Module Selector Tool to identify all the modules required for your application's features. The tool will generate the module registration code which can be copied into your application.

All Feature Bundles Copy

If you are not concerned about bundle size, you can import all community / enterprise features via the bundles AllCommunityModule / AllEnterpriseModule.

// All Community Features
import { AllCommunityModule, ModuleRegistry } from 'ag-grid-community';
ModuleRegistry.registerModules([AllCommunityModule]);
// All Enterprise Features
import { AllEnterpriseModule, ModuleRegistry } from 'ag-grid-enterprise';
ModuleRegistry.registerModules([AllEnterpriseModule]);