Why Wijmo
Why choose Wijmo for your 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.
Here are various templates and samples utilizing Wijmo. You can check out the actual demos and download the source code to customize and use them yourself.
Wijmo's Vue UI controls
UI Control Designer View
Easily customize Wijmo controls!
Wijmo CSS Theme Designer
Easily create design themes using the Wijmo CSS Theme Designer and apply the created CSS to your Wijmo controls!
Wijmo Control Properties Editor
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!
Please share your concerns and questions about Wijmo with MESCIUS's expert team. We empathize with your concerns and provide assistance.
Vue UI Control Online Study