|
@@ -12,6 +12,8 @@
|
|
|
<v-btn color="primary" class="half-button" @click="handleSave">{{ $t('common.save') }}</v-btn>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <!-- 展示 -->
|
|
|
+ <div v-else-if="!projectExp?.length" class="resumeNoDataText">{{ $t('resume.dataDefaultPrompt') }}{{ $t('resume.projectExperience') }}...</div>
|
|
|
<div v-else v-for="(k, i) in projectExp" :key="i" class="exp mx-n2 mt-5" @mouseenter="k.active = true" @mouseleave="k.active = false">
|
|
|
<span class="float-right" v-if="k.active">
|
|
|
<v-btn variant="text" color="primary" prepend-icon="mdi-square-edit-outline" @click="handleEdit(k)">{{ $t('common.edit') }}</v-btn>
|