44 lines
776 B
Vue
44 lines
776 B
Vue
<script lang="ts" setup>
|
|
import { Settings } from "lucide-vue-next";
|
|
|
|
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>
|