13 lines
250 B
Vue
13 lines
250 B
Vue
<template>
|
|
<LoginLayout class="w-3/5">
|
|
<MainNav />
|
|
<slot></slot>
|
|
|
|
</LoginLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LoginLayout from '@/layouts/LoginLayout.vue'
|
|
import MainNav from '@/components/MainNav.vue'
|
|
|
|
</script> |