Skip to content

translation: add the Chinese translation link and categorize files #21

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
154 changes: 4 additions & 150 deletions .vitepress/config.js
Original file line number Diff line number Diff line change
@@ -1,156 +1,10 @@
import locales from './locales'

export default {
title: 'Vue 3 Migration Guide',
description: 'Guide on migrating from Vue 2 to Vue 3',
srcDir: 'src',
locales: locales.vitepressConfig,

themeConfig: {
nav: [{ text: 'Vue 3 Docs', link: 'https://vuejs.org' }],

sidebar: [
{
text: 'Guide',
items: [
{ text: 'Overview', link: '/' },
{ text: 'New Recommendations', link: '/recommendations' },
{ text: 'Migration Build', link: '/migration-build' },
{
text: 'Breaking Changes',
link: '/breaking-changes/'
}
]
},
{
text: 'Global API',
items: [
{
text: 'Global API Application Instance',
link: '/breaking-changes/global-api'
},
{
text: 'Global API Treeshaking',
link: '/breaking-changes/global-api-treeshaking'
}
]
},
{
text: 'Template Directives',
items: [
{ text: 'v-model', link: '/breaking-changes/v-model' },
{
text: 'key Usage Change',
link: '/breaking-changes/key-attribute'
},
{
text: 'v-if vs. v-for Precedence',
link: '/breaking-changes/v-if-v-for'
},
{ text: 'v-bind Merge Behavior', link: '/breaking-changes/v-bind' },
{
text: 'v-on.native modifier removed',
link: '/breaking-changes/v-on-native-modifier-removed'
}
]
},
{
text: 'Components',
items: [
{
text: 'Functional Components',
link: '/breaking-changes/functional-components'
},
{
text: 'Async Components',
link: '/breaking-changes/async-components'
},
{ text: 'emits Option', link: '/breaking-changes/emits-option' }
]
},
{
text: 'Render Function',
items: [
{
text: 'Render Function API',
link: '/breaking-changes/render-function-api'
},
{
text: 'Slots Unification',
link: '/breaking-changes/slots-unification'
},
{
text: '$listeners merged into $attrs',
link: '/breaking-changes/listeners-removed'
},
{
text: '$attrs includes class & style',
link: '/breaking-changes/attrs-includes-class-style'
}
]
},
{
text: 'Custom Elements',
items: [
{
text: 'Custom Elements Interop Changes',
link: '/breaking-changes/custom-elements-interop'
}
]
},
{
text: 'Removed APIs',
items: [
{
text: 'v-on keyCode Modifiers',
link: '/breaking-changes/keycode-modifiers'
},
{ text: 'Events API', link: '/breaking-changes/events-api' },
{ text: 'Filters', link: '/breaking-changes/filters' },
{
text: 'inline-template',
link: '/breaking-changes/inline-template-attribute'
},
{ text: '$children', link: '/breaking-changes/children' },
{ text: 'propsData option', link: '/breaking-changes/props-data' }
]
},
{
text: 'Other Minor Changes',
items: [
{
text: 'Attribute Coercion Behavior',
link: '/breaking-changes/attribute-coercion'
},
{
text: 'Custom Directives',
link: '/breaking-changes/custom-directives'
},
{ text: 'Data Option', link: '/breaking-changes/data-option' },
{
text: 'Mount API changes',
link: '/breaking-changes/mount-changes'
},
{
text: 'Props Default Function this Access',
link: '/breaking-changes/props-default-this'
},
{
text: 'Transition Class Change',
link: '/breaking-changes/transition'
},
{
text: 'Transition as Root',
link: '/breaking-changes/transition-as-root'
},
{
text: 'Transition Group Root Element',
link: '/breaking-changes/transition-group'
},
{
text: 'VNode lifecycle events',
link: '/breaking-changes/vnode-lifecycle-events'
},
{ text: 'Watch on Arrays', link: '/breaking-changes/watch' }
]
}
]
locales: locales.themeConfig
}
}
175 changes: 175 additions & 0 deletions .vitepress/locales/en.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,175 @@
export default {
vitepressConfig: {
title: 'Vue 3 Migration Guide',
lang: 'en-US',
description: 'Guide on migrating from Vue 2 to Vue 3',
},
themeConfig: {
localeLinks: {
text: 'English',
items: [
{ text: '简体中文', link: '/zh/' },
]
},

nav: [
{ text: 'Docs', link: '/' },
{
text: 'Links',
items: [
{
text: 'Vue 3 Docs',
link: 'https://vuejs.org',
}
]
}
],

sidebar: [
{
text: 'Guide',
items: [
{ text: 'Overview', link: '/' },
{ text: 'New Recommendations', link: '/recommendations' },
{ text: 'Migration Build', link: '/migration-build' },
{
text: 'Breaking Changes',
link: '/breaking-changes/'
}
]
},
{
text: 'Global API',
items: [
{
text: 'Global API Application Instance',
link: '/breaking-changes/global-api'
},
{
text: 'Global API Treeshaking',
link: '/breaking-changes/global-api-treeshaking'
}
]
},
{
text: 'Template Directives',
items: [
{ text: 'v-model', link: '/breaking-changes/v-model' },
{
text: 'key Usage Change',
link: '/breaking-changes/key-attribute'
},
{
text: 'v-if vs. v-for Precedence',
link: '/breaking-changes/v-if-v-for'
},
{ text: 'v-bind Merge Behavior', link: '/breaking-changes/v-bind' },
{
text: 'v-on.native modifier removed',
link: '/breaking-changes/v-on-native-modifier-removed'
}
]
},
{
text: 'Components',
items: [
{
text: 'Functional Components',
link: '/breaking-changes/functional-components'
},
{
text: 'Async Components',
link: '/breaking-changes/async-components'
},
{ text: 'emits Option', link: '/breaking-changes/emits-option' }
]
},
{
text: 'Render Function',
items: [
{
text: 'Render Function API',
link: '/breaking-changes/render-function-api'
},
{
text: 'Slots Unification',
link: '/breaking-changes/slots-unification'
},
{
text: '$listeners merged into $attrs',
link: '/breaking-changes/listeners-removed'
},
{
text: '$attrs includes class & style',
link: '/breaking-changes/attrs-includes-class-style'
}
]
},
{
text: 'Custom Elements',
items: [
{
text: 'Custom Elements Interop Changes',
link: '/breaking-changes/custom-elements-interop'
}
]
},
{
text: 'Removed APIs',
items: [
{
text: 'v-on keyCode Modifiers',
link: '/breaking-changes/keycode-modifiers'
},
{ text: 'Events API', link: '/breaking-changes/events-api' },
{ text: 'Filters', link: '/breaking-changes/filters' },
{
text: 'inline-template',
link: '/breaking-changes/inline-template-attribute'
},
{ text: '$children', link: '/breaking-changes/children' },
{ text: 'propsData option', link: '/breaking-changes/props-data' }
]
},
{
text: 'Other Minor Changes',
items: [
{
text: 'Attribute Coercion Behavior',
link: '/breaking-changes/attribute-coercion'
},
{
text: 'Custom Directives',
link: '/breaking-changes/custom-directives'
},
{ text: 'Data Option', link: '/breaking-changes/data-option' },
{
text: 'Mount API changes',
link: '/breaking-changes/mount-changes'
},
{
text: 'Props Default Function this Access',
link: '/breaking-changes/props-default-this'
},
{
text: 'Transition Class Change',
link: '/breaking-changes/transition'
},
{
text: 'Transition as Root',
link: '/breaking-changes/transition-as-root'
},
{
text: 'Transition Group Root Element',
link: '/breaking-changes/transition-group'
},
{
text: 'VNode lifecycle events',
link: '/breaking-changes/vnode-lifecycle-events'
},
{ text: 'Watch on Arrays', link: '/breaking-changes/watch' }
]
}
]
},
}
13 changes: 13 additions & 0 deletions .vitepress/locales/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import en from './en.js'
import zh from './zh.js'

export default {
vitepressConfig: {
'/': en.vitepressConfig,
'/zh/': zh.vitepressConfig,
},
themeConfig: {
'/': en.themeConfig,
'/zh/': zh.themeConfig,
},
}
Loading