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
Sockenklaus 360fa51607 fixed problems with tailwind overwriting naive ui styles
implemented user datatable
2023-07-09 22:37:43 +02:00

15 lines
350 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 LoginLayout from '@/layouts/LoginLayout.vue'
import MainNav from '@/components/MainNav.vue'
</script>