#### 组件名称
table-item

#### 解释：
table-item

#### 属性说明：
|属性名 | 类型 | 必填 | 默认值 |说明 |
|---|---|---|---|---|
|main |Object |是|{}|table-item的渲染数据|
|bottomBorder |Boolean |否|true|是否有下边框线|
|bottomBorderColor |String |否|#e6e6e6|底部边框线的颜色|

#### 代码示例
swan:
```
<table-item
        class="table-item"
        main="{title: '标题',desc: [{content: '内容1'},{content: '内容1'}]}"
  >
```
js:
```
Page({
    data: {
        main: {
            title: '标题',
            desc: [
                {
                    content: '内容1'
                },
                {
                    content: '内容1'
                }
            ]
        }
    }
});

```
css:
```

```