Files
vuefilemanager/resources/js/components/Auth/AuthContentWrapper.vue
2020-04-28 18:06:38 +02:00

22 lines
314 B
Vue

<template>
<div id="auth">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'AuthContentWrapper',
}
</script>
<style scoped lang="scss">
@import "@assets/app.scss";
#auth {
height: 100%;
width: 100%;
display: table;
}
</style>