Why Wijmo
Why Choose Wijmo for Vue App?
Quick Start
Getting Started with Wijmo in Vue 3 🚀
1. Go to the Vue app folder and install the Wijmo library using npm.
* The npm commands are the same for both Vue 2 and Vue 3.
npm install @mescius/wijmo.vue2.all
2. Add css file to apply Wijmo style.
Access the src/main.js file of the Vue app you want to work on and add the Wijmo css file.
// main.js
import '@mescius/wijmo.styles/wijmo.css';
3. Add the Wijmo modules you want to use.
* This section explains how to use auxiliary registration functions. For information on registering at the custom component level, see here.
The code below imports Wijmo's FlexGrid control.
If you would like to add other controls, please check the detailed code samples for each control below.
// main.js
import { registerGrid } from '@mescius/wijmo.vue2.grid';
4. Modify the initialization-related code below as follows.
// main.js
let
app
=
createApp
(
App
);
registerGrid
(
app
);
app
.
mount
(
'#app'
);
Below is the entire code within the modified src/main.js.
// main.js
import
{
createApp
}
from
'vue'
;
import
App
from
'
./App.vue'
;
import
'@mescius/wijmo.styles/wijmo.css'
;
import { registerGrid } from '@mescius/wijmo.vue2.grid';
let
app
=
createApp
(
App
);
registerGrid
(
app
);
app
.
mount
(
'#app'
);
5. Initialize the Wijmo control and add it to the screen.
Access the src/App.vue file to initialize the Wijmo controls, generate sample data, and then write code to display the Wijmo controls on the screen.
Please check the detailed code below.
6. Run the Vue app and check the result.
npm run serve
Vue Starter Template
Jump-Start Your Development with Customizable
Vue Samples and Templates.
Explore a variety of templates and samples built with Wijmo. View live demos and download the source code to customize for your own projects.
Wijmo's Vue UI Controls
Vue UI Control Designer
Easily Customize Wijmo Controls!
Easily create design themes using the Wijmo CSS Theme Designer and apply the created CSS to your Wijmo controls!
Easily customize the settings of Wijmo controls using the Wijmo Control Properties Editor. You can modify and check the settings for over 20 different controls. Download these settings and quickly and easily apply them to your web without any additional coding.

Ask Anything!
Share your vague concerns and questions about Spread.NET with MESCIUS's expert team. We empathize with your concerns and are here to help.