首页 > 其他分享 >VuePress侧边栏写法

VuePress侧边栏写法

时间:2022-12-06 15:23:00浏览次数:36  
标签:test1 title hykq 侧边 VuePress 写法

module.exports = {
    title: '标题',
    description: '描述',
    themeConfig: {
        sidebar: [
            {
                title: '分组1',
                collapsable: false,
                sidebarDepth: 1,
                children: ['/hykq/', '/hykq/test1'],
            },
        ]
    }
}

标签:test1,title,hykq,侧边,VuePress,写法
From: https://www.cnblogs.com/xlsh/p/16955389.html

相关文章

  • Vue之el与data的两种写法
    data与el的2种写法          1.el有2种写法                  (1).newVue时候配置el属性。     ......
  • curl增加多个请求头的写法
    publicfunctionadd_brand(){$header=array('Content-Type:application/json','charset:utf-8','groupName:ns-v7g15','accountId:1626231450425742965');$token......
  • mybatis之xml映射文件>、<=等特殊符号写法
    前言在使用mybatis框架进行开发时,编写sql少不了<=,>=,>,<,<>等比较符号,但是直接在mapper文件中,直接使用这些符号是不行的,此时就需要对类似于这种的符号进行转换。正文直接符......
  • JAVA 解压缩代码写法
    packagecom.chinaunicom.asset.common.utils.compress;importlombok.extern.slf4j.Slf4j;importorg.apache.commons.compress.archivers.ArchiveEntry;importorg.......
  • c# 抽象类+特性 验证QQ,Mobile,Name的通用写法
     1.调用boolbResult=ValidateAttributeExtension.Validate<StudentVip>(vip); 2.特性的额外方法:验证功能:publicclassValidateAttributeExtension{......
  • SqlServer 中 case when 的的两种写法
    https://mp.weixin.qq.com/s?src=11&timestamp=1670070823&ver=4204&signature=OpXckzt0JIEqamYo0WpJqwgtbQDMFkUpQ0Nc56WLqzHq0bMR91TRHbCxycSCx49JmQNO9K7MCZ-XLqzjJeTnS......
  • React类组件写法与函数式组件写法
    React组件写法classMyButtonextendsReact.Component{constructor(props){//继承父类的构造函数super(props);this.state={openStatus:false}}}render(){retur......
  • Latex常见数学符号写法
    写在前面本文主要记录一些Latex数学公式符号的写法,便于自己查阅。公式写法来源:刘海洋的《Latex入门》。1概述Latex有两种数学公式,一种是行内公式,也就是和文本同行的数......
  • 5118的伪原创代码提取内容方法并附带火车头插件写法
    今天应一个朋友请求,要求写个5118的伪原创插件,他的接口输出的默认是json形式输出,很不方便,要提取里面伪原创的结果,并附上代码。<?php$host="http://apis.5118.com";......
  • golang的jsonrpc客户端通用写法
    服务端packagemainimport( "errors" "fmt" "log" "net" "net/rpc" "net/rpc/jsonrpc" "os")//算数运算结构体typeArithstruct{}//算数运算请求结......