mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 09:04:55 +00:00
12 lines
308 B
Vue
12 lines
308 B
Vue
<template>
|
|
<NuxtLayout>
|
|
<ModrinthLoadingIndicator />
|
|
<Notifications />
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import ModrinthLoadingIndicator from '~/components/ui/modrinth-loading-indicator.ts'
|
|
import Notifications from '~/components/ui/Notifications.vue'
|
|
</script>
|