介绍
Taroify 是移动端组件库 Vant 的 Taro 版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。
安装
- 通过 npm 安装
npm i @taroify/core -S --production
- 通过 yarn 安装
yarn add @taroify/core --production
使用组件
import { Button } from "@taroify/core" function ButtonExample() { return <Button color="primary">按钮</Button> }