This commit is contained in:
2024-08-23 13:22:50 +08:00
parent 32762a199c
commit 6705e5ef98
29 changed files with 202 additions and 476 deletions

23
pages/home.vue Normal file
View File

@@ -0,0 +1,23 @@
<template>
<view class="container">
<my-header></my-header>
</view>
</template>
<script>
import MyHeader from '@/components/MyHeader.vue'
export default {
components: {
MyHeader
},
data() {
return {
};
}
}
</script>
<style lang="stylus">
</style>