更新记录
v1.0.0(2022-01-03) 下载此版本
- 新增 TopPopup 顶部弹出层 组件,从顶部弹出的浮层,引导用户进行相关操作。
- 文档地址:https://doc.firstui.cn
平台兼容性
Vue2 | Vue3 |
---|---|
√ | √ |
App | 快应用 | 微信小程序 | 支付宝小程序 | 百度小程序 | 字节小程序 | QQ小程序 |
---|---|---|---|---|---|---|
HBuilderX 3.2.14 app-vue app-nvue | × | √ | √ | √ | √ | √ |
钉钉小程序 | 快手小程序 | 飞书小程序 | 京东小程序 |
---|---|---|---|
× | × | × | × |
H5-Safari | Android Browser | 微信浏览器(Android) | QQ浏览器(Android) | Chrome | IE | Edge | Firefox | PC-Safari |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | × | × | × | √ |
First UI 快速上手
使用 First UI 前,请确保你已经学习并熟练使用过 uni-app 。
安装
方式一 :通过 npm 安装
// # Using npm
npm install firstui-uni
方式二 :通过下载代码
// # GitHub
git clone https://github.com/FirstUI/FirstUI.git
方式三 :选择需要的模块引入
如何使用
按照以下的方式使用组件,以 Button
为例,其它组件在对应的文档页查看。
import fuiButton from "@/components/firstui/fui-button/fui-button"
export default {
components:{
fuiButton
}
}
在 pages.json
中 添加配置:
// 下载安装时配置
"easycom": {
"autoscan": true,
"custom": {
"fui-(.*)": "@/components/firstui/fui-$1/fui-$1.vue"
}
}
// 使用npm安装时配置(配置完成后重新编译运行)
"easycom": {
"autoscan": true,
"custom": {
"fui-(.*)": "firstui-uni/firstui/fui-$1/fui-$1.vue"
}
}
使用组件
引入组件后,可以在 页面 中直接使用组件
<fui-button text="默认按钮"></fui-button>
相关链接
GitHub地址:https://github.com/FirstUI/FirstUI