HelpBot Assistant

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 --save

Install by using package.json

  1. Add the Syncfusion® Vue (Essential® JS 2) package references to the dependencies section of your project’s package.json file:
{
    "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.

  1. Open a terminal and run npm install. This installs all npm dependencies listed in package.json.

Refer to the npm documentation for additional details about package.json.
```