mirror of
https://github.com/Snailclimb/JavaGuide
synced 2025-06-16 18:10:13 +08:00
36 lines
587 B
TypeScript
36 lines
587 B
TypeScript
import { arraySidebar } from "vuepress-theme-hope";
|
|
|
|
export const books = arraySidebar([
|
|
{
|
|
text: "计算机基础",
|
|
link: "cs-basics",
|
|
icon: "computer",
|
|
},
|
|
{
|
|
text: "数据库",
|
|
link: "database",
|
|
icon: "database",
|
|
},
|
|
{
|
|
text: "搜索引擎",
|
|
link: "search-engine",
|
|
icon: "search",
|
|
},
|
|
{
|
|
text: "Java",
|
|
link: "java",
|
|
icon: "java",
|
|
},
|
|
{
|
|
text: "软件质量",
|
|
link: "software-quality",
|
|
icon: "highavailable",
|
|
},
|
|
|
|
{
|
|
text: "分布式",
|
|
link: "distributed-system",
|
|
icon: "distributed-network",
|
|
},
|
|
]);
|