Skip to content

Commit

Permalink
修复图片路径
Browse files Browse the repository at this point in the history
  • Loading branch information
omvjro committed Sep 15, 2024
1 parent f5cf95c commit fcd372b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,21 +52,21 @@ const feat = ref('none'),
name: t('relationBox.love'),
progress: 80,
direction: 'horizontal',
activeicon: '/img/ui/heart.png',
inactiveicon: '/img/ui/emptyheart.png'
activeicon: 'img/ui/heart.png',
inactiveicon: 'img/ui/emptyheart.png'
},
{
name: t('relationBox.lust'),
progress: 50,
direction: 'vertical',
activeicon: '/img/ui/vial.png',
inactiveicon: '/img/ui/emptyvial.png'
activeicon: 'img/ui/vial.png',
inactiveicon: 'img/ui/emptyvial.png'
},
{
name: t('relationBox.jealousy'),
progress: 100,
direction: 'horizontal',
activeicon: '/img/ui/wideeye.png'
activeicon: 'img/ui/wideeye.png'
},
{
name: '',
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeatBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defineProps({
<template>
<div id="feat" class="feat feat-overlay" v-show="feat !== 'none'">
<div class="featImage">
<img :src="`/img/ui/${feat}Coin.gif`" class="featCoin">
<img :src="`img/ui/${feat}Coin.gif`" class="featCoin">
</div>
<div class="featText"><span class="title">{{ featTitle }}</span><br><span class="text">{{ featText }}</span></div>
<div class="closeFeat"></div>
Expand Down

0 comments on commit fcd372b

Please sign in to comment.