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

16 lines
397 B
Vue

<template>
<n-config-provider preflight-style-disabled>
<LoginLayout class="w-3/5">
<MainNav />
<slot></slot>
</LoginLayout>
</n-config-provider>
</template>
<script lang="ts" setup>
import { NConfigProvider } from 'naive-ui'
import LoginLayout from '@/layouts/LoginLayout.vue'
import MainNav from '@/components/MainNav.vue'
</script>