## 字节小程序组件扩展包

组件扩展包是对小程序常用组件的扩展与补充，正在持续补充中。

## 开始使用

```
npm install @open-dy/tt-miniprogram-plus
```

在需要导入组件的页面/组件的json文件中配置`usingComponents`

```
{
    "usingComponents": {
        "row":"ext://@open-dy/tt-miniprogram-plus/row",
        "col":"ext://@open-dy/tt-miniprogram-plus/col"
    }
}
```

在ttml中正常使用组件

```
<row>
    <col></col>
    <col></col>
</row>
```

更多关于扩展组件的介绍： [详情](https%3A%2F%2Fdeveloper.open-douyin.com%2Fdocs%2Fresource%2Fzh-CN%2Fmini-app%2Fdevelop%2Fcomponent%2Foverview)
