mkl_power_box/components/module/module-one-0-5.js

32 lines
699 B
JavaScript

Vue.component('module-one-0-5', {
template:`
<div class="screen-module">
<div class="screen-one-0-5" v-if="type == false">
<div class="module-title"><span>{{label}}</span></div>
<slot></slot>
</div>
<div class="screen-one-0-5" style="height: 444px" v-if="type == true">
<div class="module-title"><span>{{label}}</span></div>
<slot></slot>
</div>
</div>
`,
props: {
label:{
type:String
},
type:{
type:Boolean
}
},
data() {
return {
};
},
mounted(){
},
})