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-04 01:08:21 +02:00

13 lines
228 B
Vue

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