pages.json 683 B

12345678910111213141516171819202122232425
  1. {
  2. "easycom": {
  3. "autoscan": true,
  4. "custom": {
  5. "^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
  6. "^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
  7. "^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue",
  8. "^ut-(.*)": "@/components/ut-$1/ut-$1.vue"
  9. }
  10. },
  11. "pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
  12. {
  13. "path": "pages/index/index",
  14. "style": {
  15. "navigationBarTitleText": "uni-app"
  16. }
  17. }
  18. ],
  19. "globalStyle": {
  20. "navigationBarTextStyle": "black",
  21. "navigationBarTitleText": "uni-app",
  22. "navigationBarBackgroundColor": "#F8F8F8",
  23. "backgroundColor": "#F8F8F8"
  24. }
  25. }