mirror of
https://gitee.com/elegant_wings/dbd-meeting-wx-small.git
synced 2025-06-21 15:29:37 +08:00
40 lines
478 B
JavaScript
40 lines
478 B
JavaScript
Component({
|
|
options: {
|
|
multipleSlots: true
|
|
},
|
|
|
|
properties: {
|
|
isCurent:{
|
|
type: Boolean,
|
|
value: false
|
|
},
|
|
isShowLeftLine: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
axisTitle: {
|
|
type: String,
|
|
value: ''
|
|
},
|
|
axisTime:{
|
|
type: String,
|
|
value: ''
|
|
},
|
|
textArray:{
|
|
type: Array,
|
|
value:[]
|
|
}
|
|
|
|
},
|
|
|
|
data: {
|
|
|
|
},
|
|
ready() {
|
|
console.log( this.data.textArray)
|
|
},
|
|
|
|
methods: {
|
|
|
|
}
|
|
}) |