16 lines
305 B
Vue
16 lines
305 B
Vue
<template>
|
|
<LoginLayout>
|
|
<MainNav :route="props.route" />
|
|
<slot />
|
|
|
|
</LoginLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import LoginLayout from '@/layouts/LoginLayout'
|
|
import MainNav from '@/components/MainNav'
|
|
|
|
const props = defineProps({
|
|
route: String
|
|
})
|
|
</script> |