UNPKG

mp-colorui

Version:

MP ColorUI 是一款基于 Taro 框架并且联合 Color-UI CSS 库开发的多端 UI 组件库(支持小程序端和H5端)

16 lines (14 loc) 335 B
import Taro from "@tarojs/taro-h5"; import Nerv from "nervjs"; import ClCard from "../../card/index"; export default class ClVerticalTabCell extends Taro.Component { render() { const props = this.props; return <ClCard> {this.props.children} </ClCard>; } } ClVerticalTabCell.options = { addGlobalClass: true };