mirror of
https://github.com/WuKongIM/WuKongIMDocs
synced 2025-06-06 17:57:31 +00:00
51 lines
1.1 KiB
TypeScript
51 lines
1.1 KiB
TypeScript
import { DefaultTheme } from "vitepress";
|
|
|
|
export const navbar: DefaultTheme.NavItem[] = [
|
|
{
|
|
text: " 介绍",
|
|
link: "/guide/guide",
|
|
activeMatch: "^/guide",
|
|
},
|
|
{
|
|
text: " 安装",
|
|
link: "/install/",
|
|
activeMatch: "^/install",
|
|
},
|
|
{
|
|
text: " 服务端",
|
|
link: "/server/config/config",
|
|
activeMatch: "^/server",
|
|
},
|
|
{
|
|
text: "SDK文档",
|
|
activeMatch: "^/sdk",
|
|
items: [
|
|
{ text: "iOS", link: "/sdk/ios" },
|
|
{ text: "Android", link: "/sdk/android" },
|
|
{ text: "Javascript", link: "/sdk/jssdk/intro" },
|
|
{ text: "Flutter", link: "/sdk/flutter" },
|
|
{ text: "Uniapp", link: "/sdk/uniapp" },
|
|
{ text: "微信小程序", link: "/sdk/smallprogram" },
|
|
{ text: "harmonyOS", link: "/sdk/harmonyos" },
|
|
],
|
|
},
|
|
{
|
|
text: "Demo 演示",
|
|
activeMatch: "^/demo",
|
|
items: [
|
|
{ text: "前端聊天", link: "http://imdemo.githubim.com/" },
|
|
{ text: "后台监控", link: "http://monitor.githubim.com/web" }
|
|
],
|
|
},
|
|
// {
|
|
// text: "更新日志",
|
|
// link: "https://gitee.com/WuKongDev/WuKongIM/releases",
|
|
// },
|
|
{
|
|
"text": "v2.0.1 (beta)",
|
|
items: [
|
|
{text: "v1.2.5 (stable)", link: "/1.0/"},
|
|
],
|
|
},
|
|
];
|