diff --git a/docs/examples/cell.md b/docs/examples/cell.md index 344456778..2b4ac75e2 100644 --- a/docs/examples/cell.md +++ b/docs/examples/cell.md @@ -1,15 +1,26 @@ ## Cell 组件 +### 基础用法 + +:::demo 样例代码 +```html + +``` +::: + ### API | 参数 | 说明 | 类型 | 默认值 | 可选值 | |-----------|-----------|-----------|-------------|-------------| -| className | 自定义额外类名 | string | '' | '' | +| icon | 左侧图标 | string | '' | '' | +| title | 左侧标题 | string | '' | '' | +| value | 右侧内容 | string | '' | '' | +| isLink | 是否为链接,链接会在右侧出现箭头 | string | '' | '' | ### Slot | name | 描述 | |-----------|-----------| | - | 自定义显示内容 | -| icon | | -| name | | +| icon | 自定义icon | +| title | 自定义title | diff --git a/packages/cell/src/cell.vue b/packages/cell/src/cell.vue index 03fb7c6cf..4bf4265fc 100644 --- a/packages/cell/src/cell.vue +++ b/packages/cell/src/cell.vue @@ -1,19 +1,20 @@ + + diff --git a/src/index.js b/src/index.js index fa6aedd6a..13c936146 100644 --- a/src/index.js +++ b/src/index.js @@ -4,6 +4,7 @@ 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'; +import Icon from '../packages/icon/index.js'; // zenui import '../packages/zenui/src/index.pcss'; @@ -16,6 +17,7 @@ const install = function(Vue) { Vue.component(Field.name, Field); Vue.component(Radio.name, Radio); Vue.component(Cell.name, Cell); + Vue.component(Icon.name, Icon); }; // auto install @@ -31,5 +33,6 @@ module.exports = { Switch, Field, Radio, - Cell + Cell, + Icon };