mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-05 18:23:48 +00:00
26 lines
406 B
Vue
26 lines
406 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;
|
|
//display: flex;
|
|
//align-items: center;
|
|
//justify-content: center;
|
|
}
|
|
</style>
|