elementui-lts
v2.16.0
Published
A Component Library for Vue.js.
Downloads
59
Readme
A Vue.js 2.0 UI Toolkit for Web.
Element will stay with Vue 2.x
For Vue 3.0, we recommend using Element Plus(Element Plus is a community develop project)
For MiniProgram development, we recommend using MorJS
Links
- Homepage and documentation
- awesome-element
- FAQ
- Vue.js 3.0 migration
- Customize theme
- Preview and generate theme online
- Element for React
- Element for Angular
- Atom helper
- Visual Studio Code helper
- Starter kit
- Design resources
- Gitter
Install
npm install elementui-lts -S
Quick Start
import Vue from 'vue'
import Element from 'elementui-lts'
import 'elementui-lts/lib/theme-chalk/index.css';
Vue.use(Element)
// or
import {
Select,
Button
// ...
} from 'elementui-lts'
Vue.component(Select.name, Select)
Vue.component(Button.name, Button)