27 lines
703 B
Vue
27 lines
703 B
Vue
<template>
|
|
<view class="me_page">
|
|
<hs-custom-title title="个人中心" />
|
|
<MyUserInfo />
|
|
<MyShowData />
|
|
<MyList />
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { onLoad, onShow } from '@dcloudio/uni-app'
|
|
import useModel from './model'
|
|
import { setTabBarData } from '@/common/libraries/setTabBar'
|
|
import { getCurrentInstance } from 'vue'
|
|
import { useWeAppAuthStore } from '@/common'
|
|
import MyList from './components/list.vue'
|
|
import MyUserInfo from './components/useInfo.vue'
|
|
import MyShowData from './components/showData.vue'
|
|
import method from './method'
|
|
const App = getApp()
|
|
const auth = useWeAppAuthStore()
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import './style.scss';
|
|
</style>
|