学员端小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

31 lines
396 B

<template>
<view class="content">
我的
<!-- <UserTab selectedIndex ='2'></UserTab> -->
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
console.log('我的页面')
},
onShow() {
// uni.hideTabBar();
},
methods: {
goPage() {}
}
}
</script>
<style lang="scss" scoped>
.content {
width: 100vw;
height: 100%;
}
</style>