How can I help you?
Installation
3 Feb 20261 minute to read
Install by using npm CLI
Syncfusion® Vue (Essential® JS 2) packages are published on npm. You can install the required packages using npm. For example, the Vue Grid package can be installed with the following command:
npm install @syncfusion/ej2-vue-grids --saveInstall by using package.json
- Add the Syncfusion® Vue (Essential® JS 2) package references to the
dependenciessection of your project’spackage.jsonfile:
{
"dependencies": {
"@syncfusion/ej2-vue-grids": "*",
"@syncfusion/ej2-vue-charts": "*"
}
}The
*indicates the latest version of the npm package. Refer to the npm documentation for more details about versioning.
- Open a terminal and run
npm install. This installs all npm dependencies listed inpackage.json.
Refer to the npm documentation for additional details about
package.json.
```