mirror of https://github.com/ElemeFE/element
update readme
parent
8c99215785
commit
5bb29dda79
|
@ -0,0 +1,4 @@
|
||||||
|
sudo: false
|
||||||
|
language: node_js
|
||||||
|
node_js:
|
||||||
|
- "5"
|
32
README.md
32
README.md
|
@ -1,12 +1,17 @@
|
||||||
# Element
|
# Element
|
||||||
> UI Elements for admin page.
|
> UI Elements for admin page.
|
||||||
|
|
||||||
## Demo/Docs
|
## Docs
|
||||||
http://element-test.faas.elenet.me/
|
|
||||||
|
Comming soon
|
||||||
|
|
||||||
|
## Demo
|
||||||
|
|
||||||
|
<img src="./examples/assets/images/element-demo.jpeg" width = "100%" />
|
||||||
|
|
||||||
## Usages
|
## Usages
|
||||||
```shell
|
```shell
|
||||||
npm install element-ui
|
npm install element-ui@next
|
||||||
```
|
```
|
||||||
|
|
||||||
## Quick Start
|
## Quick Start
|
||||||
|
@ -61,8 +66,27 @@ Vue.component(Button.name, Button)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## development
|
||||||
|
|
||||||
|
### Building Tool Installation
|
||||||
|
|
||||||
|
Element UI is built with [cooking](http://cookingjs.github.io/). So before running it you'll need to install [cooking](http://cookingjs.github.io/) globally.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ npm install cooking -g
|
||||||
|
```
|
||||||
|
|
||||||
|
### Commands
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ make install --- install dependencies
|
||||||
|
$ make dev --- develop mode
|
||||||
|
$ make dist --- compile the project
|
||||||
|
$ make dist-all --- compile each component individually
|
||||||
|
```
|
||||||
|
|
||||||
## Changelog
|
## Changelog
|
||||||
Details changes for each release are documented in the [release notes](https://github.com/eleme/element-ui/releases).
|
Details changes for each release are documented in the [release notes](https://github.com/ElemeFE/element/releases).
|
||||||
|
|
||||||
## LICENSE
|
## LICENSE
|
||||||
MIT
|
MIT
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 363 KiB |
|
@ -1,5 +0,0 @@
|
||||||
appid: fe.element
|
|
||||||
version: 1.0.0
|
|
||||||
os: linux
|
|
||||||
language: cdnjs
|
|
||||||
apptype: web
|
|
|
@ -1,11 +0,0 @@
|
||||||
language: fe.cooking
|
|
||||||
version: 0.5.4
|
|
||||||
script:
|
|
||||||
- make deploy
|
|
||||||
outfile:
|
|
||||||
- ./fe.element
|
|
||||||
notifications:
|
|
||||||
email:
|
|
||||||
- haiping.zeng@ele.me
|
|
||||||
branch:
|
|
||||||
master: alpha_stable
|
|
|
@ -14,10 +14,6 @@
|
||||||
"gh-docs": "cooking build -c scripts/cooking.demo.js -p && gh-pages -d examples/element-ui --remote origin",
|
"gh-docs": "cooking build -c scripts/cooking.demo.js -p && gh-pages -d examples/element-ui --remote origin",
|
||||||
"prepublish": "make dist"
|
"prepublish": "make dist"
|
||||||
},
|
},
|
||||||
"faas": {
|
|
||||||
"domain": "element",
|
|
||||||
"public": "examples/element-ui"
|
|
||||||
},
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git@github.com:eleme/element-ui.git"
|
"url": "git@github.com:eleme/element-ui.git"
|
||||||
|
|
Loading…
Reference in New Issue