Skip to content

Commit

Permalink
fix: lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowangxiaowang256256 committed Mar 10, 2024
1 parent e3d4330 commit 2579c66
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ useHead({
<template>
<app-header />
<ai-assistant />
<router-view v-slot="{ Component }" v-show="!isShowMenu">
<router-view v-show="!isShowMenu" v-slot="{ Component }">
<Transition>
<component :is="Component" />
</Transition>
Expand Down
2 changes: 1 addition & 1 deletion src/components/app-navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const toggleDark = useToggle(isDark)
</script>

<template>
<div relative px-20px>
<div px-20px>
<div flex>
<!-- logo -->
<div h-60px flex items-center>
Expand Down
2 changes: 1 addition & 1 deletion src/components/navbar/nav-hamburger.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { menuList, isShowMenu } from '../../utils/store-data'
import { isShowMenu, menuList } from '../../utils/store-data'
</script>

<template>
Expand Down

0 comments on commit 2579c66

Please sign in to comment.