-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
33 additions
and
262 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<i18n lang="yaml"> | ||
en: | ||
home: Back to Home | ||
zh_CN: | ||
home: 回到首页 | ||
zh_TW: | ||
home: 回到首頁 | ||
</i18n> | ||
|
||
<script setup lang="ts"> | ||
import image404 from '@/assets/images/404.svg' | ||
import { useLocalTrans } from '@/hooks/useLocalTrans.ts' | ||
const t = useLocalTrans() | ||
const router = useRouter() | ||
</script> | ||
|
||
<template> | ||
<div class="w-full flex flex-col-center"> | ||
<img :src="image404" width="600" alt="404"> | ||
<div class="flex"> | ||
<m-button @click="() => router.replace('/')"> | ||
<ma-svg-icon name="i-material-symbols:home-outline-rounded" :size="20" /> | ||
{{ t('home') }} | ||
</m-button> | ||
</div> | ||
</div> | ||
</template> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters