# 快速上手

# 背景知识

使用 mpx-cube-ui 前,请确保你已经学习过使用 Mpx 小程序框架 (opens new window)

# 安装

# 通过包管理器安装

你可以通过 npmyarnpnpm 进行安装。

# 使用 npm
npm i @mpxjs/mpx-cube-ui

# 使用 yarn
yarn add @mpxjs/mpx-cube-ui

# 使用 pnpm
pnpm add @mpxjs/mpx-cube-ui
1
2
3
4
5
6
7
8

# 使用

# 组件使用

以 Button 组件为例,在 mpx 文件的 json 配置当中引入 Button 路径即可。

各组件的基础路径为:@mpxjs/mpx-cube-ui/lib/components/xxx/index.mpx

// your-page.mpx
<template>
  <cube-button></cube-button>
</template>

<script>
import { createPage } from '@mpxjs/component'

createPage({})
</script>

<script type="application/json">
  {
    "usingComponents": {
      "cube-button": "@mpxjs/mpx-cube-ui/lib/components/button/index.mpx"
    }
  }
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18