mkl_power_box/components/module/module-two-1-1.js

21 lines
391 B
JavaScript

Vue.component('module-two-1-1', {
template:`
<div class="screen-module">
<div class="screen-two-1-1">
<div class="module-title"><span>{{label}}</span></div>
<slot></slot>
</div>
</div>
`,
props: {
label:{
type:String
}
},
data() {
return {
};
},
})