mirror of
https://github.com/modrinth/code.git
synced 2026-08-31 03:55:59 +00:00
17 lines
390 B
Vue
17 lines
390 B
Vue
<template>
|
|
<ServersManageWorldRootLayout>
|
|
<RouterView v-slot="{ Component }">
|
|
<template v-if="Component">
|
|
<Suspense>
|
|
<component :is="Component" />
|
|
</Suspense>
|
|
</template>
|
|
</RouterView>
|
|
</ServersManageWorldRootLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ServersManageWorldRootLayout } from '@modrinth/ui'
|
|
import { RouterView } from 'vue-router'
|
|
</script>
|