Chatwoot/app/javascript/dashboard/routes/auth/Auth.vue
2022-09-15 10:00:56 +05:30

14 lines
290 B
Vue

<template>
<div class="row auth-screen--view align-center">
<router-view />
<auth-right-screen />
</div>
</template>
<script>
import AuthRightScreen from 'dashboard/routes/auth/components/AuthRightScreen';
export default {
components: {
AuthRightScreen,
},
};
</script>