Chatwoot/app/javascript/dashboard/routes/auth/Auth.vue
2022-03-17 17:25:51 +05:30

14 lines
300 B
Vue

<template>
<div class="row auth--wrap h-full w-full">
<router-view></router-view>
<auth-right-screen />
</div>
</template>
<script>
import AuthRightScreen from 'dashboard/routes/auth/components/AuthRightScreen.vue';
export default {
components: {
AuthRightScreen,
},
};
</script>