12345678910111213141516171819202122232425262728293031323334 |
- module.exports = {
- title: 'Vue Router Tab',
- description: '基于 Vue Router 的路由页签组件',
- // 主题配置
- themeConfig: {
- nav: [
- { text: '教程', link: '/guide.html' },
- { text: 'API', link: '/api.html' },
- { text: '实例', link: 'https://bhuh12.github.io/vue-router-tab/demo/' }
- ],
- sidebar: 'auto',
- displayAllHeaders: true,
- // 假定是 GitHub. 同时也可以是一个完整的 GitLab URL
- repo: 'bhuh12/vue-router-tab',
- // 自定义仓库链接文字。默认从 `themeConfig.repo` 中自动推断为
- // "GitHub"/"GitLab"/"Bitbucket" 其中之一,或是 "Source"。
- repoLabel: '查看源码',
- // 假如文档放在一个特定的分支下:
- docsBranch: 'dev',
-
- lastUpdated: '上次更新: ',
- },
- // markdow 配置
- markdown: {
- lineNumbers: true,
- },
- plugins: ['@vuepress/back-to-top']
- }
|