TOPVERSE_Official/app.vue

15 lines
199 B
Vue
Raw Normal View History

2023-04-23 14:19:03 +08:00
<script setup lang="ts">
2023-04-23 23:14:52 +08:00
import { appName } from './constants'
2023-04-23 14:19:03 +08:00
useHead({
title: appName,
})
</script>
<template>
<VitePwaManifest />
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>