core-element-ui
v1.0.0
Published
A Component Library for Vue.js. fork from element-ui 2.15.8, upgrade async-validator to 4.1.1
Downloads
103
Readme
A Vue.js 2.0 UI Toolkit for Web. fork from element-ui 2.15.8, upgrade async-validator to 4.1.1
Element will stay with Vue 2.x
For Vue 3.0, we recommend using Element Plus from the same team
Install
npm install core-element-ui -S
Quick Start
import Vue from "vue";
import Element from "core-element-ui";
Vue.use(Element);
// or
import {
Select,
Button,
// ...
} from "core-element-ui";
Vue.component(Select.name, Select);
Vue.component(Button.name, Button);
For more information, please refer to Quick Start in our documentation.