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