jhbigscreen/src/components/module/module-one-1-1.vue

22 lines
439 B
Vue
Raw Normal View History

2023-09-17 23:29:27 +08:00
<template>
<div class="screen-module">
<border-box6 v-if="border==6"/>
<div class="screen-one-1-1">
<div class="module-title"><span>{{label||''}}</span></div>
<slot></slot>
</div>
</div>
</template>
<script>
export default {
props:{
border:{
type:Number
},
label:{
type:String
}
}
};
</script>