48 lines
817 B
Vue
48 lines
817 B
Vue
<script lang="ts" setup>
|
|
import { Settings } from 'lucide-vue-next'
|
|
|
|
definePageMeta({
|
|
requiresAuth: true,
|
|
})
|
|
|
|
const nav = [
|
|
{
|
|
items: [
|
|
{
|
|
title: 'AI 教案设计',
|
|
url: '/test',
|
|
icon: Settings,
|
|
},
|
|
{
|
|
title: 'AI 案例设计',
|
|
url: '/test',
|
|
icon: 'tabler:settings',
|
|
},
|
|
{
|
|
title: 'AI 课件设计',
|
|
url: '/test',
|
|
icon: 'tabler:settings',
|
|
},
|
|
{
|
|
title: 'AI 出题',
|
|
url: '/test',
|
|
icon: 'tabler:settings',
|
|
},
|
|
{
|
|
title: '微视频制作',
|
|
url: '/test',
|
|
icon: 'tabler:settings',
|
|
},
|
|
],
|
|
},
|
|
]
|
|
</script>
|
|
|
|
<template>
|
|
<AppPageWithSidebar :sidebar-nav="nav">
|
|
<h1>Prepare</h1>
|
|
</AppPageWithSidebar>
|
|
</template>
|
|
|
|
<style scoped></style>
|