添加初始化目录结构

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": [
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页"
}
"path": "pages/index/index"
}
],
"subPackages": [
{
"root": "subPages",
"pages": [
{
"path": "welcome/index"
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"easycom": {
"autoscan": true,
"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>