feat: course generation

This commit is contained in:
2024-08-08 18:04:48 +08:00
parent d3c43558fd
commit 24629f8720
22 changed files with 605 additions and 679 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import ModalAuthentication from '~/components/ModalAuthentication.vue';
import ModalAuthentication from '~/components/ModalAuthentication.vue'
const toast = useToast()
const router = useRouter()
@@ -8,7 +8,7 @@ const loginState = useLoginState()
useHead({
titleTemplate(title) {
return title ? `${title} - 眩生花 AI 助手` : '眩生花 AI 助手'
return title ? `${ title } - 眩生花 AI 助手` : '眩生花 AI 助手'
},
})
@@ -33,13 +33,14 @@ onMounted(() => {
<template>
<div>
<NuxtLoadingIndicator />
<NuxtLoadingIndicator/>
<NuxtLayout>
<NuxtPage/>
</NuxtLayout>
<UModals/>
<USlideovers/>
<UNotifications/>
</div>
</template>