mirror of
https://github.com/WuKongIM/WuKongIMDocs
synced 2025-06-06 09:38:20 +00:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { DefaultTheme } from "vitepress";
|
|
|
|
export const navbar: DefaultTheme.NavItem[] = [
|
|
{
|
|
text: " 指南",
|
|
link: "/guide/guide",
|
|
activeMatch: "^/guide",
|
|
},
|
|
{
|
|
text: "API文档",
|
|
link: "/api/",
|
|
activeMatch: "^/api",
|
|
},
|
|
{
|
|
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: "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: "项目地址",
|
|
activeMatch: "^/im",
|
|
items: [
|
|
{ text: "Github", link: "https://github.com/WuKongIM/WuKongIM" },
|
|
{ text: "Gitee", link: "https://gitee.com/WuKongDev/WuKongIM" },
|
|
],
|
|
},
|
|
];
|