Files
city-store-transfer/pages/my/my.vue
2023-10-19 09:54:26 +08:00

30 lines
380 B
Vue

<template>
<view>
我的
</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>