15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
import { navbar } from "vuepress-theme-hope";
|
|
|
|
export default navbar([
|
|
"/",
|
|
{
|
|
text: '高三特刊',
|
|
icon: "book",
|
|
children: [
|
|
{ text: "2022 级特刊", link: '/2022/' },
|
|
{ text: '2021 级特刊', link: '/2021/' },
|
|
{ text: '2020 级特刊', link: '/2020/' },
|
|
]
|
|
}
|
|
]);
|