mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-20 06:55:06 -04:00
19 lines
No EOL
278 B
Vue
19 lines
No EOL
278 B
Vue
<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> |