You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
SOP/sop-website/sop-portal/site_config/docs.js

58 lines
1.1 KiB

export default {
'en-us': {
sidemenu: [
{
title: 'header title',
children: [
{
title: 'demo1',
link: '/en-us/docs/demo1.html',
},
{
title: 'demo2',
link: '/en-us/docs/demo2.html',
},
{
title: 'dir',
opened: true,
children: [
{
title: 'demo3',
link: '/en-us/docs/dir/demo3.html',
},
],
},
],
},
],
barText: 'Documentation',
},
'zh-cn': {
sidemenu: [
{
title: '大标题',
children: [
{
title: '示例1',
link: '/zh-cn/docs/demo1.html',
},
{
title: '示例2',
link: '/zh-cn/docs/demo2.html',
},
{
title: '目录',
opened: true,
children: [
{
title: '示例3',
link: '/zh-cn/docs/dir/demo3.html',
},
],
},
],
},
],
barText: '文档',
},
};