1234567891011121314151617181920212223242526272829303132333435 |
- {
- "easycom": {
- // npm安装的方式不需要前面的"@/",下载安装的方式需要"@/"
- // npm安装方式
- // "^u-(.*)": "uview-ui/components/u-$1/u-$1.vue"
- // 下载安装方式
- "^u-(.*)": "@/uview-ui/components/u-$1/u-$1.vue"
- },
- "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
- {
- "path": "pages/login/login",
- "style": {
- "app-plus":{
- "titleNView": false
- }
- }
- }
- ,{
- "path" : "pages/index/index",
- "style" :
- {
- "app-plus":{
- "titleNView": false
- }
- }
- }
- ],
- "globalStyle": {
- "navigationBarTextStyle": "black",
- "navigationBarTitleText": "uni-app",
- "navigationBarBackgroundColor": "#F8F8F8",
- "backgroundColor": "#F8F8F8",
- "rpxCalcMaxDeviceWidth": 1366
- }
- }
|