Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
tswj
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2022-04-28 10:40:34 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e9deb84216686a9c7735898765b329354ac65c3
5e9deb84
1 parent
550e7da6
✨ feat(客户端): 新增个人主页
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
0 deletions
src/views/client/personIndex.vue
src/views/client/personIndex.vue
0 → 100644
View file @
5e9deb8
<template>
<div class="person-index-page"></div>
</template>
<script setup>
import { ref, reactive, onMounted } from 'vue'
import { useRoute, useRouter } from 'vue-router'
import axios from '@/utils/axios';
import $ from 'jquery'
import { Toast } from 'vant';
const $route = useRoute();
const $router = useRouter();
onMounted(() => {
})
</script>
<script>
import mixin from 'common/mixin';
export default {
mixins: [mixin.init],
data () {
return {
}
},
mounted () {
},
methods: {
}
}
</script>
<style lang="less" scoped>
.person-index-page {}
</style>
\ No newline at end of file
Please
register
or
login
to post a comment