Initial commit

This commit is contained in:
MakingCG
2020-03-10 19:00:32 +01:00
commit 3285a7e1c2
165 changed files with 31472 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<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>