it-tools/src/layouts/base.layout.vue

19 lines
278 B
Vue
Raw Normal View History

2022-03-31 00:33:29 +02:00
<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>