26 lines
662 B
Vue
26 lines
662 B
Vue
<template>
|
|
<view class="underpainting p25">
|
|
<JyMe></JyMe>
|
|
<JyWallet></JyWallet>
|
|
<JyMineConetnt></JyMineConetnt>
|
|
<!-- 精选 -->
|
|
<JyCherryPick></JyCherryPick>
|
|
</view>
|
|
|
|
<!-- 底部导航 -->
|
|
<footerMenu ref="footerMneuRef" page="mine" />
|
|
</template>
|
|
<script setup>
|
|
/**
|
|
* 个人中心 商城
|
|
*/
|
|
|
|
// 底部菜单
|
|
import { ref } from 'vue'
|
|
import JyMe from './components/jy-me';
|
|
import JyWallet from './components/jy-wallet';
|
|
import JyMineConetnt from './components/jy-mine-content';
|
|
import JyCherryPick from '@/components/public/jy-cherry-pick';
|
|
import footerMneu from '@/components/footerMenu/footerMenu'
|
|
</script>
|
|
<style lang="scss" scoped></style> |