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 13:56:28 +02:00

12 lines
227 B
Vue

<template>
<LoginLayout>
<MainNav />
<slot></slot>
</LoginLayout>
</template>
<script setup>
import LoginLayout from '@/layouts/LoginLayout'
import MainNav from '@/components/MainNav'
</script>