diff --git a/components.json b/components.json index 52e0653db..8fcccc5c1 100644 --- a/components.json +++ b/components.json @@ -3,5 +3,6 @@ "button": "./packages/button/index.js", "switch": "./packages/switch/index.js", "field": "./packages/field/index.js", - "radio": "./packages/radio/index.js" + "radio": "./packages/radio/index.js", + "cell": "./packages/cell/index.js" } diff --git a/docs/examples/cell.md b/docs/examples/cell.md new file mode 100644 index 000000000..344456778 --- /dev/null +++ b/docs/examples/cell.md @@ -0,0 +1,15 @@ +## Cell 组件 + +### API + +| 参数 | 说明 | 类型 | 默认值 | 可选值 | +|-----------|-----------|-----------|-------------|-------------| +| className | 自定义额外类名 | string | '' | '' | + +### Slot + +| name | 描述 | +|-----------|-----------| +| - | 自定义显示内容 | +| icon | | +| name | | diff --git a/docs/nav.config.json b/docs/nav.config.json index 591cb03af..88eefc099 100644 --- a/docs/nav.config.json +++ b/docs/nav.config.json @@ -8,11 +8,20 @@ "list": [ { "path": "/sample", - "title": "Sample组件" + "title": "Sample" }, { "path": "/button", - "title": "Button组件" + "title": "Button" + } + ] + }, + { + "groupName": "CSS组件", + "list": [ + { + "path": "/cell", + "title": "Cell" } ] }, @@ -21,19 +30,19 @@ "list": [ { "path": "/switch", - "title": "Switch组件" + "title": "Switch" }, { "path": "/field", - "title": "Field组件" + "title": "Field" }, { "path": "/radio", - "title": "Radio组件" + "title": "Radio" }, { "path": "/checkbox", - "title": "Checkbox组件" + "title": "Checkbox" } ] } diff --git a/packages/cell/CHANGELOG.md b/packages/cell/CHANGELOG.md new file mode 100644 index 000000000..e88c472b3 --- /dev/null +++ b/packages/cell/CHANGELOG.md @@ -0,0 +1,8 @@ +## 0.0.2 (2017-01-20) + +* 改了bug A +* 加了功能B + +## 0.0.1 (2017-01-10) + +* 第一版 diff --git a/packages/cell/README.md b/packages/cell/README.md new file mode 100644 index 000000000..4c6172563 --- /dev/null +++ b/packages/cell/README.md @@ -0,0 +1,26 @@ +# @youzan/<%= name %> + +!!! 请在此处填写你的文档最简单描述 !!! + +[![version][version-image]][download-url] +[![download][download-image]][download-url] + +[version-image]: http://npm.qima-inc.com/badge/v/@youzan/<%= name %>.svg?style=flat-square +[download-image]: http://npm.qima-inc.com/badge/d/@youzan/<%= name %>.svg?style=flat-square +[download-url]: http://npm.qima-inc.com/package/@youzan/<%= name %> + +## Demo + +## Usage + +## API + +| 参数 | 说明 | 类型 | 默认值 | 可选值 | +|-----------|-----------|-----------|-------------|-------------| +| className | 自定义额外类名 | string | '' | '' | + + + + +## License +[MIT](https://opensource.org/licenses/MIT) diff --git a/packages/cell/index.js b/packages/cell/index.js new file mode 100644 index 000000000..aa54ff040 --- /dev/null +++ b/packages/cell/index.js @@ -0,0 +1,3 @@ +import Cell from './src/cell'; + +export default Cell; diff --git a/packages/cell/package.json b/packages/cell/package.json new file mode 100644 index 000000000..7dbfa2900 --- /dev/null +++ b/packages/cell/package.json @@ -0,0 +1,10 @@ +{ + "name": "<%= name %>", + "version": "<%= version %>", + "description": "<%= description %>", + "main": "./lib/index.js", + "author": "<%= author %>", + "license": "<%= license %>", + "devDependencies": {}, + "dependencies": {} +} diff --git a/packages/cell/src/cell.vue b/packages/cell/src/cell.vue new file mode 100644 index 000000000..03fb7c6cf --- /dev/null +++ b/packages/cell/src/cell.vue @@ -0,0 +1,28 @@ + + + diff --git a/src/index.js b/src/index.js index 875fce4c5..fa6aedd6a 100644 --- a/src/index.js +++ b/src/index.js @@ -2,6 +2,8 @@ import Sample from '../packages/sample/index.js'; import Button from '../packages/button/index.js'; import Switch from '../packages/switch/index.js'; import Field from '../packages/field/index.js'; +import Radio from '../packages/radio/index.js'; +import Cell from '../packages/cell/index.js'; // zenui import '../packages/zenui/src/index.pcss'; @@ -12,6 +14,8 @@ const install = function(Vue) { Vue.component(Button.name, Button); Vue.component(Switch.name, Switch); Vue.component(Field.name, Field); + Vue.component(Radio.name, Radio); + Vue.component(Cell.name, Cell); }; // auto install @@ -25,5 +29,7 @@ module.exports = { Sample, Button, Switch, - Field + Field, + Radio, + Cell };