1.0.0 • Published 2 years ago

core-element-ui v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

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.