Skip to content

Commit

Permalink
update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
zyronon committed Dec 5, 2023
1 parent 1956455 commit 43b50a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## 📸 在线访问

Github Pages: <https://zyronon.github.io/typing-word/>(国内推荐访问这个)
Github Pages: <https://typing-word.ttentau.top>(国内推荐访问这个)

Netlify: <https://typing-words.netlify.app/>(需要翻墙)

Expand Down
4 changes: 2 additions & 2 deletions src/components/Logo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ function goHome(){

<template>
<div class="logo" @click="goHome">
<img v-show="settingStore.theme === 'light'" src="/logo-text-black.png" alt="">
<img v-show="settingStore.theme !== 'light'" src="/logo-text-white.png" alt="">
<img v-show="settingStore.theme === 'dark'" src="/logo-text-white.png" alt="">
<img v-show="settingStore.theme !== 'dark'" src="/logo-text-black.png" alt="">
</div>
</template>

Expand Down
2 changes: 1 addition & 1 deletion src/pages/dict/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ onMounted(() => {
<nav class="active">
<router-link to="/dict">词典</router-link>
</nav>
<nav @click.stop="runtimeStore.showSettingModal = true"><a href="javascript;;">设置</a></nav>
<nav @click.stop="runtimeStore.showSettingModal = true"><a href="javascript:void(0)">设置</a></nav>
</div>
<RightTopBar/>
</header>
Expand Down

0 comments on commit 43b50a2

Please sign in to comment.