16 lines
397 B
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> |