30 lines
420 B
Vue
30 lines
420 B
Vue
<template>
|
||
<div>
|
||
我的资料,也就展示个二维码吧
|
||
获取一波资料吧
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { getUserInfo } from '@/apis/interfaces/im'
|
||
export default{
|
||
data(){
|
||
return{
|
||
|
||
}
|
||
},
|
||
mounted() {
|
||
console.log(this.$Route)
|
||
// getUserInfo(this.$Route.query.id).then(res => {
|
||
|
||
// })
|
||
},
|
||
methods: {
|
||
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
</style>
|