IntelliClass_FE/pages/course/prep/config.ts
Timothy Yin 03fb3e38ae
Some checks failed
CI / lint (push) Failing after 59s
CI / test (push) Failing after 3m35s
feat: add 微课视频 外链
2025-05-05 22:49:41 +08:00

22 lines
407 B
TypeScript

import type { NavSecondaryItem } from '~/components/nav/Secondary.vue'
export const nav: NavSecondaryItem[] = [
{
label: '教学设计',
to: '/course/prep/teach',
},
{
label: '课件设计',
to: '/course/prep/deck',
},
{
label: 'AI 出题',
to: '/course/prep/quiz',
},
{
label: '微视频制作',
to: 'https://dh.fenshenzhike.com/',
external: true,
},
]