dataease-dm/frontend/src/components/dataease/DeMainContainer.vue

21 lines
244 B
Vue
Raw Normal View History

2021-03-03 15:06:52 +08:00
<template>
<el-main class="ms-main-container">
2021-03-03 17:38:41 +08:00
<slot />
2021-03-03 15:06:52 +08:00
</el-main>
</template>
<script>
2021-03-03 17:38:41 +08:00
export default {
name: 'DeMainContainer'
2021-03-03 17:38:41 +08:00
}
2021-03-03 15:06:52 +08:00
</script>
<style scoped>
.ms-main-container {
padding: 15px;
2021-05-06 23:40:34 +08:00
height: 100vh;
2021-03-03 15:06:52 +08:00
}
</style>