YZProjectCloud/yanzhu-bigscreen/src/components/module/module-one-2-3.vue

40 lines
756 B
Vue
Raw Normal View History

2024-11-27 23:42:39 +08:00
<template>
2025-04-05 16:48:56 +08:00
<div class="screen-one-2-3 screen-module">
2024-11-27 23:42:39 +08:00
<div class="module-title"><span>{{ label || '' }}</span></div>
2024-11-28 23:59:43 +08:00
<div class="module-ctx">
<slot></slot>
</div>
2024-11-27 23:42:39 +08:00
</div>
</template>
<script>
export default {
props: {
label: {
type: String,
default:""
}
}
};
</script>
<style lang="less" scoped>
.screen-one-2-3 {
height: calc(100% - 20px);
margin:20px;
position: relative;
&::after{
content:" ";
display: block;
position: absolute;
width:100%;
height: 26px;
top:0px;
background-repeat: no-repeat;
}
.module-title{
position: relative;
z-index: 9;
}
}
</style>