当前位置:网站首页>uni-ui安装
uni-ui安装
2022-07-30 23:11:00 【Hel1x】
uni-ui安装
快速开始
在HBuilderX 新建uni-app项目的模板中,选择uni-ui模板即可使用
npm安装
npm install @dcloudio/uni-ui
安装后node_modules文件夹内增加dcloudio文件夹
官方文档
注意 cli 项目默认是不编译 node_modules 下的组件的,导致条件编译等功能失效 ,导致组件异常 需要在根目录创建 vue.config.js 文件 ,增加 @dcloudio/uni-ui 包的编译即可正常
// vue.config.js
module.exports = {
transpileDependencies:['@dcloudio/uni-ui']
}
配置easycom
使用 npm 安装好 uni-ui 之后,需要配置 easycom 规则,让 npm 安装的组件支持 easycom
打开项目根目录下的 pages.json 并添加 easycom 节点:
// pages.json
{
"easycom": {
"autoscan": true,
"custom": {
// uni-ui 规则如下配置
"^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue"
}
},
// 其他内容
pages:[
// ...
]
}
本人配置到这里就能够使用uni-ui组件了
边栏推荐
猜你喜欢
go版本升级
win10重建索引
ML之shap:基于FIFA 2018 Statistics(2018年俄罗斯世界杯足球赛)球队比赛之星分类预测数据集利用RF随机森林+计算SHAP值单样本力图/依赖关系贡献图可视化实现可解释性之攻略
Learning about XML (1)
2021GDCPC广东省大学生程序设计竞赛 H.History
IJCAI2022教程 | 口语语言理解:最新进展和新领域
Reverse linked list - head insertion inversion method
测试人面试 常被问到的计算机网络题,高薪回答模板来了
PS基础学习(一)
Apache Doris series: In-depth understanding of real-time analytical database Apache Doris
随机推荐
抽象类和接口(学习笔记)
QT 在父类中添加子类的流程,object tree,
Gxlcms audio novel system/novel listening system source code
微软商店出现【0x800706D9】解决方法
[MySQL] Related operations on databases and tables in MySQL
【2022-05-31】JS逆向之易企秀
Computer shortcut icon whitening solution
【无标题】
“蔚来杯“2022牛客暑期多校训练营4 L.Black Hole 垃圾计算几何
Regular expression syntax and usage
$\text{ARC 145}$
智能创意中的尺寸拓展模块
Go的Gin框架学习
IJCAI2022 Tutorial | Spoken Language Comprehension: Recent Advances and New Fields
正则表达式语法及使用
win10重建索引
Apache Doris系列之:安装与部署详细步骤
测试人面试 常被问到的计算机网络题,高薪回答模板来了
MySQL进阶sql性能分析
【LeetCode】55. 跳跃游戏 - Go 语言题解