| 123456789101112131415161718192021222324252627282930313233 |
- export default defineAppConfig({
- pages: [
- 'pages/index/index',
- 'pages/explore/index',
- 'pages/profile/index',
- 'pages/login/index',
- 'pages/register/index'
- ],
- window: {
- backgroundTextStyle: 'light',
- navigationBarBackgroundColor: '#1890ff',
- navigationBarTitleText: '小程序Starter',
- navigationBarTextStyle: 'white',
- navigationStyle: 'custom'
- },
- tabBar: {
- custom: true,
- list: [
- {
- pagePath: 'pages/index/index',
- text: '首页'
- },
- {
- pagePath: 'pages/explore/index',
- text: '发现'
- },
- {
- pagePath: 'pages/profile/index',
- text: '我的'
- }
- ]
- }
- })
|