Files
SOP/sop-website/sop-portal/site_config/docs.js
tanghc 6ab696dfaf - 新增ISV用户平台
- 新增门户网站(portal)
- 新增`C++`,`Rust`语言SDK
2020-11-07 10:55:12 +08:00

59 lines
1.1 KiB
JavaScript

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: '文档',
},
};