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

25 lines
393 B
Vue

<template>
<div class="screen-module">
<div class="screen-one-3-2">
<div class="module-title">
<span>{{label}}</span>
</div>
<slot></slot>
</div>
</div>
</template>
<script>
export default {
props: {
label: {
type: String,
},
},
data() {
return {}
},
}
</script>