20 lines
293 B
Vue
20 lines
293 B
Vue
<script lang="ts" setup>
|
|
import { nav } from './config'
|
|
|
|
definePageMeta({
|
|
requiresAuth: true,
|
|
})
|
|
|
|
useHead({
|
|
title: 'AI 教学设计 | 备课',
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<AppPageWithSidebar :sidebar-nav="nav">
|
|
<h1>teach</h1>
|
|
</AppPageWithSidebar>
|
|
</template>
|
|
|
|
<style scoped></style>
|