17 lines
254 B
JavaScript
17 lines
254 B
JavaScript
|
|
Component({
|
||
|
|
options: {
|
||
|
|
multipleSlots: true,
|
||
|
|
},
|
||
|
|
properties: {
|
||
|
|
title: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
desc: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
notice: {
|
||
|
|
type: String,
|
||
|
|
},
|
||
|
|
},
|
||
|
|
});
|