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