微调整目录结构

This commit is contained in:
aixianling
2023-01-05 14:40:53 +08:00
parent b8ff07c733
commit a8db7468c2
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,6 @@ const start = () => {
}, },
pages: [ pages: [
{path: 'pages/home', style: {navigationBarTitleText: "buy-lite"}}, {path: 'pages/home', style: {navigationBarTitleText: "buy-lite"}},
{path: "pages/mine", style: {navigationBarTitleText: "个人中心"}}
], ],
subPackages: [ subPackages: [
{root: "mods/", pages: []}, {root: "mods/", pages: []},

View File

@@ -1,12 +1,13 @@
<template> <template>
<section class="mine"> <section class="AppMine">
</section> </section>
</template> </template>
<script> <script>
export default { export default {
name: "mine", name: "AppMine",
appName: "个人中心",
data() { data() {
return {} return {}
}, },
@@ -17,6 +18,6 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.mine { .AppMine {
} }
</style> </style>