Skip to content

Commit

Permalink
Merge pull request #166 from yeonjulee1005/stage
Browse files Browse the repository at this point in the history
🚌 [version: 2.9.1] push to master
  • Loading branch information
yeonjulee1005 authored Jun 21, 2024
2 parents 8ce61c5 + 69aa046 commit 791e859
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
4 changes: 2 additions & 2 deletions components/A/Header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
<div class="header-container flex flex-align-center gap-20">
<HeaderLogo />
<div class="flex-auto" />
<HeaderDesktopMenu />
<HeaderDesktopMenu v-if="isDesktop" />
<AThemeChange />
<ALanguageChange v-if="isDesktop" />
<HeaderMobileMenu />
<HeaderMobileMenu v-else />
</div>
<LazyHeaderForecast
v-if="isDesktop"
Expand Down
7 changes: 1 addition & 6 deletions components/Header/DesktopMenu.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
<template>
<div
v-if="isDesktop"
class="flex flex-fixed gap-40"
>
<div class="flex flex-fixed gap-40">
<nuxt-link
v-for="(menu, index) in mainMenuData"
v-show="index"
Expand Down Expand Up @@ -33,7 +30,5 @@
</template>

<script setup lang="ts">
const { isDesktop } = useDevice()
const { mainMenuData, socialMenuData } = useMenuStore()
</script>
7 changes: 2 additions & 5 deletions components/Header/MobileMenu.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<template>
<div>
<DDButton
v-if="!isDesktop"
aria-label="mobile-menu"
color="orange"
size="sm"
Expand Down Expand Up @@ -42,8 +41,8 @@
<template #leading>
<Icon
name="line-md:menu-to-close-alt-transition"
:width="isDesktop ? 24 : 20"
:height="isDesktop ? 24 : 20"
:width="20"
:height="20"
/>
</template>
</DDButton>
Expand Down Expand Up @@ -86,8 +85,6 @@
</template>

<script setup lang="ts">
const { isDesktop } = useDevice()
const { mainMenuData, socialMenuData } = useMenuStore()
const { url } = useImageStorage()
Expand Down
7 changes: 7 additions & 0 deletions data/korLocation.json
Original file line number Diff line number Diff line change
Expand Up @@ -10163,6 +10163,13 @@
"geoX": 51,
"geoY": 38
},
{
"code": 5011068000,
"firstLoc": "제주",
"secondLoc": "제주시",
"geoX": 52,
"geoY": 37
},
{
"code": 5013000000,
"firstLoc": "제주",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "Dewdew",
"email": "yeonju.lee1005@gmail.com"
},
"version": "2.9.0",
"version": "2.9.1",
"private": true,
"scripts": {
"build": "nuxt build",
Expand Down

0 comments on commit 791e859

Please sign in to comment.