Skip to content

Commit ece43b4

Browse files
committed
fix: img path
1 parent a6574da commit ece43b4

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

app/components/event/EventSection.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
4848
width="690"
4949
height="388"
5050
:alt="`${$t('top.refreshment')} supported by giftee, HENNGE, TAM`"
51-
:src="'event/refreshment_space.png'"
51+
src="/event/refreshment_space.png"
5252
decoding="async"
5353
/>
5454
<div class="title">
@@ -65,7 +65,7 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
6565
width="690"
6666
height="388"
6767
:alt="$t('top.creative_wall')"
68-
:src="'event/creative_wall.png'"
68+
src="/event/creative_wall.png"
6969
decoding="async"
7070
/>
7171
<div class="title">
@@ -80,7 +80,7 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
8080
width="690"
8181
height="388"
8282
:alt="$t('top.events_handson')"
83-
:src="'event/hands_on.png'"
83+
src="/event/hands_on.png"
8484
decoding="async"
8585
/>
8686
<div class="title">
@@ -97,7 +97,7 @@ import { panelers } from '~/utils/events-panel-discussion.constants'
9797
width="690"
9898
height="388"
9999
:alt="$t('top.tattoo_space')"
100-
:src="'event/tattoo_space.png'"
100+
src="/event/tattoo_space.png"
101101
decoding="async"
102102
/>
103103
<div class="title">

app/utils/store.constants.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,58 +2,58 @@ import { StoreMenu } from '~/types/app'
22

33
export const storeMenu: StoreMenu[] = [
44
{
5-
imgSrc: 'store/vue-t-shirt.png',
5+
imgSrc: '/store/vue-t-shirt.png',
66
nameKey: 'tshirt',
77
price: '¥2,500',
88
textKey: 'tshirt_detail',
99
color: 'ネイビー',
1010
size: 'S / M / L / XL',
1111
},
1212
{
13-
imgSrc: 'store/vue-parka.png',
13+
imgSrc: '/store/vue-parka.png',
1414
nameKey: 'parka',
1515
price: '¥5,500',
1616
textKey: 'parka_detail',
1717
color: 'グレー',
1818
size: 'S / M / L / XL',
1919
},
2020
{
21-
imgSrc: 'store/vue-badge.png',
21+
imgSrc: '/store/vue-badge.png',
2222
nameKey: 'vue_badge',
2323
price: '¥600',
2424
textKey: 'vue_badge_detail',
2525
size: 'W19×H17mm',
2626
},
2727
{
28-
imgSrc: 'store/nuxt-badge.png',
28+
imgSrc: '/store/nuxt-badge.png',
2929
nameKey: 'nuxt_badge',
3030
price: '¥600',
3131
textKey: 'nuxt_badge_detail',
3232
size: 'W19×H14mm',
3333
},
3434
{
35-
imgSrc: 'store/vite-badge.png',
35+
imgSrc: '/store/vite-badge.png',
3636
nameKey: 'vite_badge',
3737
price: '¥600',
3838
textKey: 'vite_badge_detail',
3939
size: 'W18×H18mm',
4040
},
4141
{
42-
imgSrc: 'store/vue-sticker.png',
42+
imgSrc: '/store/vue-sticker.png',
4343
nameKey: 'sticker',
4444
price: '¥300',
4545
textKey: 'sticker_detail',
4646
size: 'W200×H122mm',
4747
},
4848
{
49-
imgSrc: 'store/vue-cushion.png',
49+
imgSrc: '/store/vue-cushion.png',
5050
nameKey: 'cushion',
5151
price: '¥5,000',
5252
textKey: 'cushion_detail',
5353
size: 'W360×H360mm',
5454
},
5555
{
56-
imgSrc: 'store/vue-tape.png',
56+
imgSrc: '/store/vue-tape.png',
5757
nameKey: 'tape',
5858
price: '¥1,100',
5959
textKey: 'tape_detail',

0 commit comments

Comments
 (0)