Polarcraft/web/app.vue
2023-05-06 13:14:01 +02:00

15 lines
270 B
Vue

<template>
<div class="h-screen w-full overflow-y-auto">
<NuxtLayout :name="layout" />
</div>
</template>
<script setup>
const route = useRoute()
const layout = computed(() => {
if (route.path === '/login') { return 'blank' }
return 'default'
})
</script>