添加初始化目录结构

This commit is contained in:
yuantao
2025-10-28 10:33:08 +08:00
parent 563f750801
commit af5f192e22
2 changed files with 26 additions and 12 deletions

View File

@@ -1,22 +1,29 @@
{ {
"pages": [ "pages": [
{ {
"path": "pages/index/index", "path": "pages/index/index"
"style": { }
"navigationBarTitleText": "首页" ],
} "subPackages": [
{
"root": "subPages",
"pages": [
{
"path": "welcome/index"
}
]
} }
], ],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"easycom": { "easycom": {
"autoscan": true, "autoscan": true,
"custom": { "custom": {
"^u-(.*)": "@/uview-plus/components/u-$1/u-$1.vue" "^u-([^-].*)": "@/uview-plus/components/u-$1/u-$1.vue"
} }
},
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "miniprogram",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
} }
} }

View File

@@ -0,0 +1,7 @@
<template>
<div> </div>
</template>
<script setup lang="ts"></script>
<style scoped></style>