侧边栏与多级侧边栏
页脚的基础样式
themeConfig.footer
存在时,VitePress 将在页面底部显示全局页脚。
js
export default {
themeConfig: {
footer: {
message: 'Released under the MIT License.',
copyright: 'Copyright © 2019-present Evan You'
}
}
}
在页脚中插入HTML字符串
页脚支持HTML
字符串
js
export default {
themeConfig: {
footer: {
message: '友情链接: <a href="http://doc.rseg.club/">登の窝</a>.',
copyright: 'Copyright © 2019-present <a href="http://doc.rseg.club/">Evan You</a>'
}
}
}