A Component Library for Vue.js.
npm install element-ui-hao
{
"workbench.iconTheme": "vscode-icons",
"prettier.disableLanguages": [],
"editor.formatOnSave": true,
"vetur.format.defaultFormatter.html": "js-beautify-html",
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\cmd.exe",
"git.enableSmartCommit": true,
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"vsicons.dontShowNewVersionMessage": true,
"files.associations": {
"*.cjson": "jsonc",
"*.wxss": "css",
"*.wxs": "javascript"
},
"emmet.includeLanguages": {
"wxml": "html"
},
"minapp-vscode.disableAutoConfig": true,
"files.autoSave": "off",
"eslint.validate": [
"javascript",
"javascriptreact",
"html",
{
"language": "vue",
"autoFix": true
}
],
"eslint.options": {
"plugins": ["html"]
},
"javascript.preferences.quoteStyle": "single",
"prettier.singleQuote": true,
"typescript.preferences.quoteStyle": "single",
"prettier.semi": true,
"typescript.format.insertSpaceAfterSemicolonInForStatements": true,
"javascript.format.insertSpaceAfterSemicolonInForStatements": true,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
"editor.wordWrap": "on"
}
`
local readme end
Special thanks to the generous sponsorship by:
> A Vue.js 2.0 UI Toolkit for Web.
Links
- Homepage and documentation
- International users
- Chinese users
- Spanish users
- awesome-element
- FAQ
- Customize theme
- Preview and generate theme online
- Element for React
- Element for Angular
- Atom helper
- Visual Studio Code helper
- Starter kit
- element-starter
- element-in-laravel-starter
- Design resources
- Gitter
- International users
- Chinese users
Install
`shell
npm install element-ui -S
`
Quick Start
`javascript
import Vue from 'vue';
import Element from 'element-ui-hao';
Vue.use(Element);
// or
import {
Select,
Button
// ...
} from 'element-ui-hao';
Vue.component(Select.name, Select);
Vue.component(Button.name, Button);
``