code init

This commit is contained in:
chenxiaoxi
2021-05-25 18:06:45 +08:00
parent 02698d6dab
commit f54a8d4fa1
1367 changed files with 540755 additions and 21713 deletions
+22
View File
@@ -0,0 +1,22 @@
<template>
<div class="panel-content">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'panel-content'
}
</script>
<style lang="less">
@import '~@/assets/styles/style';
.panel-content{
width: 100%;
height: calc(~'100% - 30px');
position: relative;
background: @subContainerContentColor;
overflow: hidden;
}
</style>