24 lines
301 B
Vue
24 lines
301 B
Vue
<template>
|
|
<section class="home">
|
|
<open-data type="userAvatarUrl"/>
|
|
<open-data type="userNickName"/>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "home",
|
|
data() {
|
|
return {}
|
|
},
|
|
methods: {},
|
|
created() {
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.home {
|
|
}
|
|
</style>
|