This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/components/layout/Container.vue

27 lines
328 B
Vue
Raw Normal View History

2021-06-07 18:35:16 +08:00
<template>
<div class="cn-container">
<router-view/>
</div>
</template>
<script>
export default {
name: 'Container',
data () {
return {
}
}
}
</script>
<style lang="scss">
.cn-container {
height: calc(100% - 50px);
background-color: #f6f6f6;
width: 100%;
&>div {
height: 100%;
}
}
</style>