0.0.5 • Published 2 years ago

xaro v0.0.5

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

介绍

xaro 是移动端组件库 Vant 的 Taro React 版本,两者基于相同的视觉规范,提供一致的 API 接口,助力开发者快速搭建小程序应用。

🖥 浏览器支持

现代浏览器以及 Android 4.0+, iOS 8.0+。

📦 安装

通过 npm 安装使用(推荐)

  • 通过 npm 安装
npm i @xaro/core -S
  • 通过 yarn 安装
yarn add @xaro/core

🚀 使用组件

import { Button } from "@xaro/core"
import "@xaro/core/button/style"

function Index() {
  return <Button color="primary">按钮</Button>
}