Files
thebet365/apps/player/src/views/desktop/DesktopForgotPasswordView.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>