使用主题

使用一个主题和使用一个插件的方式几乎一致。

使用来自依赖的主题

一个主题可以在以 vuepress-theme-xxx 的形式发布到 npm,你可以这样使用它:

  1. module.exports = {
  2. theme: 'vuepress-theme-xx'
  3. }

主题的缩写

如果你的主题名以 vuepress-theme- 开头,你可以使用缩写来省略这个前缀:

  1. module.exports = {
  2. theme: 'xxx'
  3. }

和下面等价:

  1. module.exports = {
  2. theme: 'vuepress-theme-xxx'
  3. }

这也适用于 Scoped Packages:

  1. module.exports = {
  2. theme: '@org/vuepress-theme-xxx', // 或者一个官方主题: '@vuepress/theme-xxx'
  3. }

缩写:

  1. module.exports = {
  2. theme: '@org/xxx', // 或者一个官方主题: '@vuepress/xxx'
  3. }

注意

@vuepress/theme- 开头的主题是官方维护的主题。