chore: first commit

This commit is contained in:
Corentin Thomasset 2022-03-31 00:33:29 +02:00
commit 64c92a661c
No known key found for this signature in database
GPG key ID: DBD997E935996158
37 changed files with 13458 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<script lang="ts">
export default {
name: 'base-layout'
}
</script>
<template>
<div class="base-layout">
<slot />
</div>
</template>
<style lang="less" scoped>
.base-layout {
width: 100%;
min-height: 100vh;
background-color: #f4f6fa;
}
</style>

5
src/layouts/index.ts Normal file
View file

@ -0,0 +1,5 @@
import BaseLayout from './base.layout.vue';
export const layouts = {
base: BaseLayout,
};