mirror of
https://gitee.com/h_mo/uniapp-vue3-vite-ts-template
synced 2025-04-05 19:41:44 +08:00
feat-新增页面
This commit is contained in:
parent
cac2628eae
commit
38b964f5cc
@ -4,7 +4,19 @@
|
||||
{
|
||||
"path": "pages/index/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "uni-app"
|
||||
"navigationBarTitleText": "首页"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/demo/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "Demo"
|
||||
}
|
||||
},
|
||||
{
|
||||
"path": "pages/about/index",
|
||||
"style": {
|
||||
"navigationBarTitleText": "关于"
|
||||
}
|
||||
},
|
||||
{
|
||||
@ -31,5 +43,20 @@
|
||||
"navigationBarTitleText": "uni-app",
|
||||
"navigationBarBackgroundColor": "#F8F8F8",
|
||||
"backgroundColor": "#F8F8F8"
|
||||
},
|
||||
"tabBar": {
|
||||
"color": "#222",
|
||||
"selectedColor": "#000",
|
||||
"backgroundColor": "#FFF",
|
||||
"list": [{
|
||||
"pagePath": "pages/index/index",
|
||||
"text": "首页"
|
||||
},{
|
||||
"pagePath": "pages/demo/index",
|
||||
"text": "Demo"
|
||||
},{
|
||||
"pagePath": "pages/about/index",
|
||||
"text": "关于"
|
||||
}]
|
||||
}
|
||||
}
|
||||
|
7
src/pages/about/index.vue
Normal file
7
src/pages/about/index.vue
Normal file
@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<view> 页面模板 </view>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
7
src/pages/demo/index.vue
Normal file
7
src/pages/demo/index.vue
Normal file
@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<view> 页面模板,新建pages,将此页面内容复制粘贴到新建.vue文件 </view>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
7
src/pages/template/index.vue
Normal file
7
src/pages/template/index.vue
Normal file
@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<view> 页面模板,新建pages,将此页面内容复制粘贴到新建.vue文件 </view>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup></script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
Loading…
x
Reference in New Issue
Block a user