11 lines
284 B
Vue
11 lines
284 B
Vue
<script setup lang="ts">
|
|
import DesktopAuthLayout from '../../components/desktop/DesktopAuthLayout.vue';
|
|
import ForgotPasswordView from '../ForgotPasswordView.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<DesktopAuthLayout wide>
|
|
<ForgotPasswordView desktop />
|
|
</DesktopAuthLayout>
|
|
</template>
|