mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04:00
chore: first commit
This commit is contained in:
commit
64c92a661c
37 changed files with 13458 additions and 0 deletions
19
src/layouts/base.layout.vue
Normal file
19
src/layouts/base.layout.vue
Normal 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
5
src/layouts/index.ts
Normal file
|
@ -0,0 +1,5 @@
|
|||
import BaseLayout from './base.layout.vue';
|
||||
|
||||
export const layouts = {
|
||||
base: BaseLayout,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue