跳到主要内容

快速上手

Titian React 是以 Web Components 为基础的 React 组件库,同时与小程序组件库的 API 基本一致,打造一致的开发体验。如果您是内网用户,欢迎访问Titian内部文档。

信息

使用 @titian-design/mobile-react 前,推荐先学习官方的 Web Components 概念和使用
组件库默认开启 Shadow DOM ,使用 W3C 原生的插槽 slot 和自定义事件 Custom Events 能力。

安装

# 通过 npm 安装
npm install @titian-design/mobile-react

# 通过 yarn 安装
yarn add @titian-design/mobile-react

使用

import { TiButton } from '@titian-design/mobile-react';

const App = () => (
<div className="App">
<TiButton type="primary">Button</TiButton>
</div>
);

export default App;