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