Syncfusion AI 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 in npm. You can install the necessary packages from npm’s install command. For example, grid package can be installed using the following command.

npm install @syncfusion/ej2-vue-grids

Install by using package.json

  1. Add the Syncfusion® Vue (Essential® JS 2) package references in the dependencies section of the ~/package.json file:

     {
         "dependencies": {
             "@syncfusion/ej2-vue-grids": "*",
             "@syncfusion/ej2-vue-charts": "*"
         }
     }

    The * indicates the latest version of npm package. Refer the documentation for more details about npm versioning.

  2. Now, open the terminal and run the npm install command. This will install all npm dependencies.

Refer to the documentation for more details about npm package.json.