element - 饿了么前端团队开发的基于 Vue 的前端样式框架

10,473 阅读1分钟
原文链接: github.com

Desktop UI elements for Vue.js 2.0.

Coming soon

Demo will come with the documentation. Here is a preview of what a page based on Element looks like:

npm install element-ui@next

use babel-plugin-component

import Vue from 'vue'
import Element from 'element-ui'

Vue.use(Element)

// or
import {
  Select,
  Button
  // ...
} from 'element-ui'

Vue.component(Select.name, ElSelect)
Vue.component(Button.name, ElButton)

(roughly) to

import Vue from 'vue'
import Element from 'element-ui'
import 'element-ui/lib/theme-default/index.css';

Vue.use(Element)

// or
import Select from 'element-ui/lib/select';
import Select from 'element-ui/lib/theme-default/select.css';
import Button from 'element-ui/lib/button';
import Button from 'element-ui/lib/theme-default/button.css';

Vue.component(Select.name, ElSelect)
Vue.component(Button.name, ElButton)

.babelrc

{
  "plugins": ["xxx", ["component", [
    {
      "libraryName": "element-ui",
      "styleLibraryName": "theme-default"
    }
  ]]]
}

Element UI is built with cooking. So before running it you'll need to install cooking globally.

$ npm install cooking -g

$ make install                        ---  install dependencies
$ make dev                            ---  develop mode
$ make dist                           ---  compile the project
$ make dist-all                       ---  compile each component individually

Details changes for each release are documented in the release notes.

MIT