-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
34 lines (31 loc) · 1 KB
/
app.vue
File metadata and controls
34 lines (31 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<template>
<n-config-provider
:theme="generalStore.theme"
:locale="enGB"
:date-locale="dateEnGB"
>
<n-loading-bar-provider>
<n-message-provider>
<n-notification-provider>
<n-dialog-provider>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</n-dialog-provider>
</n-notification-provider>
</n-message-provider>
</n-loading-bar-provider>
</n-config-provider>
</template>
<script setup lang="ts">
import { useGeneralStore } from './stores/general'
import { enGB, dateEnGB } from 'naive-ui'
const generalStore = useGeneralStore()
useHead({
title: 'PromptCraft',
meta: [
{ name: 'PromptCraft', content: 'PromptCraft is designed to elevate the skill of prompt engineering, creating more effective interactions with AI language models. It may enables you to refine their prompts, providing feedback and comparison of AI responses to enhance their digital literacy and AI literacy.' }
]
})
</script>
./stores/general