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