layout-content.vue
400 Bytes
<template>
<div class="layout-content">
<i-card class="layout-card">
<slot></slot>
</i-card>
</div>
</template>
<script>
export default {
name: 'LayoutContent'
}
</script>
<style lang="scss" scoped>
.layout-content {
width: 100%;
height: 100%;
background: #f5f7f9;
display: flex;
overflow: auto;
padding: 18px;
.layout-card {
width: 100%;
}
}
</style>