2019-08-14 09:48:44 +00:00
|
|
|
<template>
|
2022-03-17 11:55:51 +00:00
|
|
|
<div class="row auth--wrap h-full w-full">
|
2019-08-14 09:48:44 +00:00
|
|
|
<router-view></router-view>
|
2022-03-17 11:55:51 +00:00
|
|
|
<auth-right-screen />
|
2019-08-14 09:48:44 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
2022-03-17 11:55:51 +00:00
|
|
|
<script>
|
|
|
|
import AuthRightScreen from 'dashboard/routes/auth/components/AuthRightScreen.vue';
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
AuthRightScreen,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|