Migrated repository
Go to file
FuryBean cfbd410ba8 Merge pull request #89 from QingWei-Li/fix/dependencies
remove markdown-it-toc-and-anchor
2016-09-20 12:22:06 +08:00
.github Replace npmcdn.com with unpkg.com 2016-09-10 18:36:46 +01:00
bin package: add lint script & lock vue version 2016-09-09 11:51:28 +08:00
examples remove markdown-it-toc-and-anchor 2016-09-20 11:29:35 +08:00
packages fixed el-col style, fix #75 (#83) 2016-09-19 12:31:31 +08:00
scripts remove markdown-it-toc-and-anchor 2016-09-20 11:29:35 +08:00
src remove markdown-it-toc-and-anchor 2016-09-20 11:29:35 +08:00
.babelrc Use cooking@1.0.0-rc.2 2016-09-06 11:51:08 +08:00
.eslintignore Initial commit 2016-07-27 14:15:02 +08:00
.eslintrc update pagination 2016-07-29 17:46:16 +08:00
.gitignore Update development page 2016-09-19 16:22:24 +08:00
.travis.yml update progress 2016-09-07 18:06:47 +08:00
CHANGELOG.md update routes 2016-09-14 11:17:02 +08:00
components.json menu item group 2016-08-23 11:32:37 +08:00
lerna.json Initial commit 2016-07-27 14:15:02 +08:00
LICENSE add LICENSE 2016-09-07 15:27:15 +08:00
Makefile Add homepage 2016-09-18 15:46:31 +08:00
package.json remove markdown-it-toc-and-anchor 2016-09-20 11:29:35 +08:00
README.md Merge pull request #57 from Leopoldthecoder/master 2016-09-12 14:47:54 +08:00

Element

Build Status npm package NPM downloads Join the chat at https://gitter.im/ElemeFE/element

Desktop UI elements for Vue.js 2.0.

Docs

Coming soon

Demo

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

Usages

npm install element-ui@next

Quick Start

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, Select)
Vue.component(Button.name, Button)

(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 'element-ui/lib/theme-default/select.css'
import Button from 'element-ui/lib/button'
import 'element-ui/lib/theme-default/button.css'

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

babel-plugin-component

.babelrc

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

Development

Recommend: node >= 4 npm >= 3

# development => install packages -> build icon etc. -> run webpack
$ npm run dev

# Recommended use `npminstall` to install packages, it is so fast
$ npm i npminstall -g
$ npminstall

# build => build all component
$ npm run dist

Changelog

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

Contribution

Please make sure to read the Contributing Guide before making a pull request.

LICENSE

MIT