A Vue.js 2.0 UI Toolkit for Web.
Element will stay with Vue 2.x
- 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
npm i eoss-element
import Vue from 'vue';
import Element from 'eoss-element';
Vue.use(Element);
// or
import {
Select,
Button
// ...
} from 'eoss-element';
Vue.component(Select.name, Select);
Vue.component(Button.name, Button);