Fără Descriere

baiyaaaaa dd29867845 submenu auto expand based on default-active value 9 ani în urmă
.github 3a00406851 Add links (#100) 9 ani în urmă
bin e75f83c860 Add 'version' attribute (#101) 9 ani în urmă
examples dd29867845 submenu auto expand based on default-active value 9 ani în urmă
packages dd29867845 submenu auto expand based on default-active value 9 ani în urmă
scripts fc5c3e8ecc misc fixed (#117) 9 ani în urmă
src eb24d57a3c Table: fix dorender in created, fixed #121 9 ani în urmă
.babelrc 3b539efb3a Use cooking@1.0.0-rc.2 9 ani în urmă
.eslintignore e320f43c2d Initial commit 9 ani în urmă
.eslintrc 3140e784b9 update pagination 9 ani în urmă
.gitignore 5f2460c50d Update development page 9 ani în urmă
.travis.yml 38cb32609c update progress 9 ani în urmă
CHANGELOG.md dd29867845 submenu auto expand based on default-active value 9 ani în urmă
LICENSE da8a486fb2 add LICENSE 9 ani în urmă
Makefile a94d35fb39 misc update 9 ani în urmă
README.md fc5c3e8ecc misc fixed (#117) 9 ani în urmă
components.json 03f34f7d32 menu item group 9 ani în urmă
lerna.json e320f43c2d Initial commit 9 ani în urmă
package.json eb24d57a3c Table: fix dorender in created, fixed #121 9 ani în urmă

README.md

Element

Build Status npm package NPM downloads

Desktop UI elements for Vue.js 2.0.

Links

Install

npm install element-ui@next -S

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

# build => build all component
$ npm run dist

Other links

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