从 v1 迁移
注意
VuePress v1 的插件和主题与 VuePress v2 不兼容。你需要将它们升级到与 v2 对应的版本。
VuePress v2 的一些主要改动和优化:
- VuePress v2 现在使用 Vue 3 ,因此你要保证你的组件和其他客户端文件是适用于 Vue 3 的。
- VuePress v2 是使用 TypeScript 开发的,因此它现在提供了更好的类型支持。我们强烈推荐你使用 TypeScript 来开发插件和主题。 VuePress 配置文件也同样支持 TypeScript ,你可以直接使用
.vuepress/config.ts
。 - VuePress v2 支持使用 Webpack 和 Vite 作为打包工具。现在默认的打包工具是 Vite ,但你仍然可以选择使用 Webpack 。你甚至可以在开发模式使用 Vite 来获取更好的开发体验,而在构建模式使用 Webpack 来获取更好的浏览器兼容性。
- VuePress v2 现在是纯 ESM 包, CommonJS 格式的配置文件不再被支持。
VuePress v2 的核心思想和流程是和 v1 一致的,但 v2 API 经过了重新设计,更加标准化。因此在将现有的 v1 项目迁移至 v2 时,你很可能会遇到一些 Breaking Changes 。本指南将帮助你将 v1 的站点 / 插件 / 主题迁移至 v2 。
给用户
用户配置变更
配置文件应该使用 ESM 格式, CommonJS 格式的配置文件已不再支持。
// .vuepress/config.js
- module.exports = {
- // 用户配置
- }
+ export default {
+ // 用户配置
+ }
theme
不再支持通过字符串使用主题。需要直接引入主题。
- module.exports = {
- theme: '@vuepress/theme-default',
- themeConfig: {
- // 默认主题配置
- },
- }
+ import { defaultTheme } from 'vuepress'
+ export default {
+ theme: defaultTheme({
+ // 默认主题配置
+ })
+ }
themeConfig
移除。直接向主题传入配置。
plugins
不再支持通过字符串使用插件。需要直接引入插件。
- module.exports = {
- plugins: [
- [
- '@vuepress/plugin-google-analytics',
- {
- id: 'G-XXXXXXXXXX',
- },
- ],
- ],
- }
+ import { googleAnalyticsPlugin } from '@vuepress/plugin-google-analytics'
+ export default {
+ plugins: [
+ googleAnalyticsPlugin({
+ id: 'G-XXXXXXXXXX',
+ }),
+ ],
+ }
shouldPrefetch
默认值从 () => true
更改为 true
。
extraWatchFiles
移除。
你可以手动在 onWatched Hook 中监听文件变化。
patterns
重命名为 pagePatterns
。
markdown.lineNumbers
移动至 markdown.code.lineNumbers 。
默认值从 false
更改为 true
。
markdown.pageSuffix
移除。
markdown.externalLinks
移动至 markdown.links.externalAttrs 。
markdown.toc
有改动。
markdown.plugins
移除。
在 extendsMarkdown Hook 中使用 markdown-it 插件。
markdown.extendMarkdown
移除。
使用 extendsMarkdown Hook 。
markdown.extractHeaders
移动至 markdown.headers 。
Webpack 相关配置
所有 Webpack 相关的配置都移动至 @vuepress/bundler-webpack
的配置项中,包括:
postcss
stylus
scss
sass
less
chainWebpack
configureWebpack
evergreen
:默认值从false
更改为true
- module.exports = {
- sass: { /* ... */ },
- }
+ import { webpackBundler } from '@vuepress/bundler-webpack'
+ export default {
+ bundler: webpackBundler({
+ sass: { /* ... */ },
+ }),
+ }
请参考 指南 > Bundler 。
Frontmatter 变更
meta
移除。
改为使用 head 。例如:
head:
- - meta
- name: foo
content: bar
- - link
- rel: canonical
href: foobar
- - script
- {}
- console.log('hello from frontmatter');
和以下结构相同:
// .vuepress/config.ts
export default {
// ...
head: [
['meta', { name: 'foo', content: 'bar' }],
['link', { rel: 'canonical', href: 'foobar' }],
['script', {}, `console.log('hello from frontmatter');`],
],
// ...
}
永久链接 Patterns 变更
:i_month
:移除:i_day
:移除:minutes
:移除(v1 文档中未列出):seconds
:移除(v1 文档中未列出):regular
:重命名为:raw
参考 Frontmatter > permalinkPattern 。
调色板系统变更
VuePress v1 的 Stylus 调色板系统 (即 styles/palette.styl
和 styles/index.styl
) 不再由 VuePress Core 默认提供支持。
调色板系统提取到了 @vuepress/plugin-palette 当中。
主题作者可以使用自己的方式来为用户提供自定义样式的能力,而不必被限制在 Stylus 当中。
如果你使用的是默认主题,那么调色板系统仍然存在,但改为使用 SASS ,并且大部分变量都迁移为 CSS 变量。参考 默认主题 > 样式 。
约定文件变更
.vuepress/enhanceApp.js
重命名为 .vuepress/client.{js,ts}
,使用方法也有改动。
参考 深入 > Cookbook > 客户端配置的使用方法 。
.vuepress/components/
在该目录下的文件不会被自动注册为 Vue 组件。
你需要使用 @vuepress/plugin-register-components ,或者在 .vuepress/client.{js,ts}
中手动注册你的组件。
.vuepress/theme/
即使该目录存在,也不会被隐式默认当作本地主题目录。
你需要在 theme 配置项中显式引入并使用本地主题。
Markdown 变更
- Markdown 插槽不再被支持。
- Markdown 图片语法不再支持 Webpack 别名。不以
./
开头的链接也会被识别为相对路径,这与原生 Markdown 图片语法的行为一致。如果你想要使用 Webpack 别名,或者使用来自外部包的图片,你应该使用<img>
标签。
- ![](@alias/foo.png)
- ![](package-name/bar.png)
+ <img src="@alias/foo.png">
+ <img src="package-name/bar.png">
CLI 变更
eject 命令
移除。
cache 选项
-c, --cache [cache]
:修改为--cache <cache>
,意味着-c
不再是cache
选项的缩写,并且cache
选项的值不再是可选的。--no-cache
:重命名为--clean-cache
。
默认主题变更
内置组件
<CodeGroup />
和<CodeBlock />
重命名为<CodeGroup />
和<CodeGroupItem />
<Badge />
$badgeErrorColor
调色板变量重命名为$badgeDangerColor
type
Prop 现在只接受tip
、warning
和danger
调色板系统
默认主题的调色板系统迁移为 SASS 和 CSS 变量。
参考 默认主题 > 样式 。
主题配置
默认主题的配置有大量变更,建议你阅读 v2 的默认主题配置参考文档来进行迁移。
参考 默认主题 > 配置 。
这里仅列出部分要注意的变更:
侧边栏配置
- sidebar: {
- title: 'Foo Bar',
- path: '/foo/bar.html',
- collapsable: true,
- children: [
- ['/baz', 'Baz'],
- ],
- }
+ sidebar: {
+ text: 'Foo Bar',
+ link: '/foo/bar.html',
+ collapsible: true,
+ children: [
+ {
+ text: 'Baz',
+ link: '/baz',
+ }
+ ],
+ }
官方插件变更
查看 v2 版本的官方插件文档。
社区主题和插件
v1 的主题和插件和 v2 并不兼容。
请确保你在使用的主题和插件已经支持 v2 ,并前往它们各自的文档查看迁移指南。
给插件作者
一些主要的 Breaking Changes :
- 你不能再在你的插件中使用其他插件了,这避免了很多由于插件嵌套引发的问题。如果你的插件依赖于别的插件,你可以在文档中列出他们,并让用户手动引入。或者,你也可以向用户提供一个插件数组以方便使用。
- 大部分 v1 Hook 都在 v2 中存在等效的 Hook 或实现方式。唯一的例外是
extendsCli
,它被移除了。 - Webpack 相关的 Hook 都被移除了,因为 VuePress Core 已经和 Webpack 解耦了。你可以尝试使用 extendsBundlerOptions Hook 来进行相似的操作,但要注意应适配所有不同的打包工具。
你可以参考 深入 > 开发插件 来了解如何开发一个 v2 插件。
插件 API 变更
plugins
:移除ready
:重命名为onPrepared
updated
:重命名为onWatched
generated
:重命名为onGenerated
additionalPages
:移除,改为在onInitialized
Hook 中使用app.pages.push(createPage())
clientDynamicModules
:移除,改为在onPrepared
Hook 中使用app.writeTemp()
enhanceAppFiles
:移除,使用clientConfigFile
HookglobalUIComponents
:移除,使用clientConfigFile
HookclientRootMixin
:移除,使用clientConfigFile
HookextendMarkdown
:重命名为extendsMarkdown
chainMarkdown
:移除extendPageData
:重命名为extendsPage
extendsCli
:移除configureWebpack
:移除chainWebpack
:移除beforeDevServer
:移除afterDevServer
:移除
参考 插件 API 。
给主题作者
虽然我们不允许在插件中使用其他插件了,但是你仍然可以在你的主题中使用插件。
一些主要的 Breaking Changes :
- 所谓的 主题目录结构约定 不再存在。
theme/enhanceApp.js
文件不会被隐式作为 Client App Enhance 文件。你需要在clientConfigFile
Hook 中显式指定它。theme/global-components/
目录下的文件不会被自动注册为 Vue 组件。你需要使用 @vuepress/plugin-register-components ,或者在clientConfigFile
中手动注册组件。theme/layouts/
目录下的文件不会被自动注册为布局组件。你需要在clientConfigFile
中通过layouts
来显式指定。theme/templates/
目录下的文件不会被自动用作 dev / ssr 的模板。你需要通过templateBuild
和templateDev
配置项来显式指定。- 你始终需要提供一个合法的 JS 入口文件,不要再使用
"main": "layouts/Layout.vue"
作为主题入口。
themeConfig
已经从用户配置和站点数据中移除。如果你想要像 v1 一样通过this.$site.themeConfig
来访问themeConfig
,我们现在建议使用 @vuepress/plugin-theme-data 插件和它提供的 Composition APIuseThemeData
。- Stylus 不再是默认的 CSS 预处理器,并且 Stylus 调色板系统不再被默认支持。如果你仍然想要使用和 v1 类似的调色板系统,可以使用 @vuepress/plugin-palette 。
- 由 Prism.js 提供的 Markdown 代码块的语法高亮不再被默认支持。你可以选择使用 @vuepress/plugin-prismjs 或 @vuepress/plugin-shiki ,或者用你自己的方式实现语法高亮。
- 考虑到可扩展性,
this.$site.pages
不再可用。
你可以参考 深入 > 开发主题 来了解如何开发一个 v2 主题。
主题 API 变更
layouts
移除。
现在你需要在客户端配置文件中设置布局组件。
参考 深入 > 开发主题 。
extend
重命名为 extends
。
你仍然可以通过 extends: parentTheme()
来继承一个父主题,这将会继承其插件和布局等。
你可以参考 默认主题 > 继承 来了解如何继承默认主题。
@theme
和 @parent-theme
别名默认被移除了,但你仍然可以使用类似的方式来开发一个可继承的主题,参考 深入 > Cookbook > 开发一个可继承的主题 。