Skip to content

Commit

Permalink
fix(profile): profile page div collapse
Browse files Browse the repository at this point in the history
  • Loading branch information
johan-6 committed May 28, 2021
1 parent 33890d8 commit 265806f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/views/profile/index.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<template>
<div class="clearfix">
<div class="about-me">
<img class="avatar-me" :src="DioAvatar" alt="avatar" />
<p class="name-me">
Expand All @@ -7,7 +8,7 @@
</p>
<p style="text-align: center">禾+几=秃 😭😭😭</p>
<ul class="about-me-detail">
<li v-for="item in introduce">
<li v-for="(item,index) in introduce" :key="index">
<app-icon :icon="item.i" />
{{ item.t }}
</li>
Expand Down Expand Up @@ -35,6 +36,7 @@
<el-tab-pane label="其他">其他</el-tab-pane>
</el-tabs>
</div>
</div>
</template>

<script>
Expand Down

0 comments on commit 265806f

Please sign in to comment.