美文网首页
uniapp项目实战:初始化项目

uniapp项目实战:初始化项目

作者: 王俏 | 来源:发表于2023-10-22 19:13 被阅读0次

初始化项目

新建项目

image.png

创建云服务空间

云服务空间 创建db_init.json

编辑db_init.json

db_init.json 初始化云数据库

pages.json中配置tabbar

 "tabBar": {
    "color": "#666",
    "backgroundColor": "#fff",
    "selectedColor": "#f07373",
    "list": [
      {
        "pagePath": "pages/tabbar/index/index",
        "text": "首页",
        "iconPath": "static/home.png",
        "selectedIconPath": "static/home-active.png" 
      },
      {
        "pagePath": "pages/tabbar/follow/follow",
        "text": "关注",
        "iconPath": "static/follow.png",
        "selectedIconPath": "static/follow-active.png" 
      },
      {
        "pagePath": "pages/tabbar/my/my",
        "text": "我的",
        "iconPath": "static/my.png",
        "selectedIconPath": "static/my-active.png" 
      }
    ]
  }

相关文章

网友评论

      本文标题:uniapp项目实战:初始化项目

      本文链接:https://www.haomeiwen.com/subject/gmwridtx.html