13 lines
223 B
Vue
13 lines
223 B
Vue
<template>
|
|
<LoginLayout>
|
|
<MainNav />
|
|
<slot />
|
|
|
|
</LoginLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LoginLayout from '@/layouts/LoginLayout'
|
|
import MainNav from '@/components/MainNav'
|
|
|
|
</script> |