cattr-app/frontend-application

View on GitHub
app/core/layouts/AuthLayout.vue

Summary

Maintainability
Test Coverage
<template>
    <div class="auth-layout">
        <slot />
    </div>
</template>

<script>
    export default {
        name: 'auth-layout',
    };
</script>

<style scoped></style>