Polarcraft/web/app.vue

15 lines
270 B
Vue
Raw Normal View History

2023-04-20 19:22:44 +02:00
<template>
2023-05-06 13:14:01 +02:00
<div class="h-screen w-full overflow-y-auto">
2023-04-25 15:51:20 +02:00
<NuxtLayout :name="layout" />
</div>
2023-04-20 19:22:44 +02:00
</template>
2023-04-25 15:51:20 +02:00
<script setup>
const route = useRoute()
const layout = computed(() => {
if (route.path === '/login') { return 'blank' }
return 'default'
})
</script>