32 lines
419 B
Vue
32 lines
419 B
Vue
<template>
|
|
<view>
|
|
我的
|
|
<TabBar :current-page="4"></TabBar>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
// this.getInfo()
|
|
},
|
|
methods: {
|
|
//---------页面调用接口示例------------
|
|
// getInfo() {
|
|
// this.$api.getUserInfo().then(res => {
|
|
// console.log('userInfo', res);
|
|
// })
|
|
// }
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|