You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
448 B
35 lines
448 B
|
|
Component({
|
|
properties: {
|
|
"show_info":{
|
|
type:Boolean,
|
|
value: false
|
|
},
|
|
"border_radius":Number,
|
|
"font_size":{
|
|
type:Number,
|
|
value:16
|
|
},
|
|
"stroke_width":{
|
|
type:Number,
|
|
value:6
|
|
},
|
|
backgroundColor:{
|
|
type:String,
|
|
value:"#EBEBEB"
|
|
},
|
|
value:Array
|
|
},
|
|
|
|
data: {
|
|
|
|
},
|
|
attached(){
|
|
this.setData({data:JSON.stringify(this.data)});
|
|
;
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
})
|