为vuepress博客站点添加类别和标签功能
...Less than 1 minute
为vuepress博客站点添加类别和标签功能
使用vuepress-theme-hope
主题即可,先安装该插件:
npm i -D vuepress-theme-hope
在config.js
中引用主题插件:
import { viteBundler } from '@vuepress/bundler-vite'
// hope theme for category and tag
import { hopeTheme } from "vuepress-theme-hope";
import { defineUserConfig } from 'vuepress'
export default defineUserConfig({
bundler: viteBundler(),
theme: hopeTheme({
// 其它配置
}),
})