This commit is contained in:
2026-01-10 21:41:23 +08:00
parent 2f5ee49594
commit 1d8144bf87
28 changed files with 434 additions and 589 deletions

View File

@@ -21,7 +21,7 @@
</div>
</template>
<script setup lang="ts">
<script setup>
import AppConfig from '@/config'
import { WEB_LINKS } from '@/utils/constants'
@@ -38,7 +38,7 @@
* 在新标签页中打开指定 URL
* @param url 要打开的网页地址
*/
const goPage = (url: string): void => {
const goPage = (url) => {
window.open(url, '_blank', 'noopener,noreferrer')
}
</script>