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.
30 lines
401 B
30 lines
401 B
Component({
|
|
data: {
|
|
|
|
},
|
|
properties: {
|
|
typeStatisticsObj: {
|
|
type: Object,
|
|
value: {}
|
|
},
|
|
type: {
|
|
type: String,
|
|
value: 'issue'
|
|
},
|
|
rightSwordVisible: {
|
|
type: String,
|
|
value: 'hide'
|
|
}
|
|
},
|
|
lifetimes: {
|
|
|
|
},
|
|
pageLifetimes: {
|
|
|
|
},
|
|
methods: {
|
|
navigateToCategoryList () {
|
|
this.triggerEvent('navigateToCategoryList')
|
|
}
|
|
}
|
|
})
|