3.6
| 所花时间 | 1h |
| 代码行数 | 50 |
| 博客园数量 | 1 |
| 所了解到的知识点 |
|
<template>
<view>
<h1> 个人信息页面</h1>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style>
</style>
json文件:
{
"pages": [ //pages数组中第一项表示应用启动页,参考:https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/Person/Person",
"style": {
"navigationBarTitleText": "uni-app"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"uniIdRouter": {
},
"tabBar": {
"list": [
{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "static/Home.png",
"selectedIconPath": "static/Homeactive.png"
},
{
"text": "我的",
"pagePath": "pages/Person/Person",
"iconPath": "static/Person.png",
"selectedIconPath": "static/Personactive.png"
}
]
}
}

浙公网安备 33010602011771号