You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
365 B
27 lines
365 B
1 year ago
|
<template>
|
||
|
<div>
|
||
|
<ul>
|
||
|
<li>
|
||
|
<router-link :to="{name:'info'}">个人信息</router-link>
|
||
|
</li>
|
||
|
<li>
|
||
|
<router-link :to="{name:'change'}">用户设置</router-link>
|
||
|
</li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div>
|
||
|
<router-view/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "UserIndex"
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|