npm i -D evui
npm run build:lib
- Node 12 is required to run the official documentation locally.
- We will upload the node version later.
- DOCUMENT : https://ex-em.github.io/EVUI
npm run docs
npm run serve
npm run build
npm run test:unit
// main.ts
import App from '@/App.vue';
import EVUI from 'evui';
const app = createApp(App);
app.use(EVUI);
app.mount('#app');
// main.ts
import App from '@/App.vue';
import { EvMessageBox, EvMessage, EvNotification } from 'evui';
const app = createApp(App);
app.use(EVUI);
app.config.globalProperties.$messagebox = EvMessageBox;
app.config.globalProperties.$messagex = EvMessage;
app.config.globalProperties.$notify = EvNotification;
app.mount('#app');