40 lines
478 B
JavaScript
Raw Permalink Normal View History

2024-02-21 17:43:11 +08:00
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: {
}
})