# 使用主题
使用一个主题和使用一个插件的方式几乎一致。
# 使用来自依赖的主题
一个主题可以在以 vuepress-theme-xxx
的形式发布到 npm,你可以这样使用它:
// .vuepress/config.js
module.exports = {
theme: 'vuepress-theme-xx'
}
# 主题的缩写
如果你的主题名以 vuepress-theme-
开头,你可以使用缩写来省略这个前缀:
// .vuepress/config.js
module.exports = {
theme: 'xxx'
}
和下面等价:
// .vuepress/config.js
module.exports = {
theme: 'vuepress-theme-xxx'
}
这也适用于 Scoped Packages (opens new window):
// .vuepress/config.js
module.exports = {
theme: '@org/vuepress-theme-xxx', // 或者一个官方主题: '@vuepress/theme-xxx'
}
缩写:
// .vuepress/config.js
module.exports = {
theme: '@org/xxx', // 或者一个官方主题: '@vuepress/xxx'
}
注意
以 @vuepress/theme-
开头的主题是官方维护的主题。