@haici/taro-debug
v0.0.5
Published
内置相关taro-debug工具和组件。
Downloads
4
Readme
taro-debug
内置相关taro-debug工具和组件。
安装
yarn add @haici/taro-debug
组件工具
Container
介绍
debug容器,结合 @haici/taro-inject-loader 注入,为每个页面包裹一层,注入与业务无关的公共功能,如:
使用
import { Container } from '@haici/taro-debug';
export default function (props) {
const { children } = props;
return <Container>{children}</Container>;
}
Props
| 参数 | 说明 | 类型 | 默认值 | |-----------|------|--------|--------| | className | 类名 | string | '' |
Debug
介绍
debug组件
- 非发布环境弹窗提示
- 非发布环境标识
- Debug功能(ToDo)
使用
import { Debug } from '@haici/taro-debug';
export default function () {
return <Debug />;
}
Props
| 参数 | 说明 | 类型 | 默认值 | |-----------|------|--------|--------| | className | 类名 | string | '' |