Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/upstream' into sync
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaodong2008 committed May 3, 2024
2 parents 9a75bdb + b3eb63c commit 468f0c1
Show file tree
Hide file tree
Showing 69 changed files with 2,109 additions and 1,654 deletions.
8 changes: 0 additions & 8 deletions .idea/.gitignore

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/aws.xml

This file was deleted.

67 changes: 0 additions & 67 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/docs.iml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

24 changes: 20 additions & 4 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const nav: ThemeConfig['nav'] = [
{ text: 'UI 組件', link: 'https://ui-libs.vercel.app/' },
{
text: '證書',
link: 'https://certification.vuejs.org/?ref=vuejs-nav'
link: 'https://certificates.dev/vuejs/?ref=vuejs-nav'
},
{ text: '找工作', link: 'https://vuejobs.com/?ref=vuejs' },
{ text: 'T-Shirt 商店', link: 'https://vue.threadless.com/' }
Expand Down Expand Up @@ -113,6 +113,7 @@ const nav: ThemeConfig['nav'] = [
link: '/about/community-guide'
},
{ text: '行為規範', link: '/about/coc' },
{ text: 'Privacy Policy', link: '/about/privacy' },
{
text: '紀錄片',
link: 'https://www.youtube.com/watch?v=OrxmtDw4pVI'
Expand Down Expand Up @@ -698,6 +699,21 @@ export default defineConfigWithTheme<ThemeConfig>({
text: 'Italiano',
repo: 'https://github.com/vuejs-translations/docs-it'
},
{
link: 'https://fa.vuejs.org',
text: 'فارسی',
repo: 'https://github.com/vuejs-translations/docs-fa'
},
{
link: 'https://ru.vuejs.org',
text: 'Русский',
repo: 'https://github.com/translation-gang/docs-ru'
},
{
link: 'https://cs.vuejs.org',
text: 'Čeština',
repo: 'https://github.com/vuejs-translations/docs-cs'
},
{
link: '/translations/',
text: '幫助我們翻譯!',
Expand All @@ -706,9 +722,9 @@ export default defineConfigWithTheme<ThemeConfig>({
],

algolia: {
indexName: 'vuejs_cn2',
appId: 'UURH1MHAF7',
apiKey: 'c23eb8e7895f42daeaf2bf6f63eb4bf6',
indexName: 'vuejs',
appId: 'ML0LEBN7FQ',
apiKey: 'f49cbd92a74532cc55cfbffa5e5a7d01',
searchParameters: {
facetFilters: ['version:v3']
},
Expand Down
6 changes: 2 additions & 4 deletions .vitepress/theme/components/Home.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<script setup lang="ts">
import { onMounted } from 'vue'
import { ref, onMounted } from 'vue'
import SiteMap from './SiteMap.vue'
// import NewsLetter from './NewsLetter.vue'
import { load, data, base } from './sponsors'
import SponsorsGroup from './SponsorsGroup.vue'
import VueMasteryModal from './VueMasteryModal.vue'
onMounted(async () => {
await load()
})
onMounted(load)
</script>

<template>
Expand Down
Loading

0 comments on commit 468f0c1

Please sign in to comment.