This repository has been archived on 2024-11-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
enzos-events/resources/js/Layouts/BELayout.vue
2023-07-02 19:56:51 +02:00

16 lines
305 B
Vue

<template>
<LoginLayout>
<MainNav :route="props.route" />
<slot />
</LoginLayout>
</template>
<script setup>
import LoginLayout from '@/layouts/LoginLayout'
import MainNav from '@/components/MainNav'
const props = defineProps({
route: String
})
</script>