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.
24 lines
392 B
24 lines
392 B
Component({
|
|
properties: {
|
|
sudokuState: {
|
|
type: Object,
|
|
value: {
|
|
consultAvailable: '0',
|
|
appraiseAvailable: '0'
|
|
}
|
|
},
|
|
},
|
|
data:{
|
|
},
|
|
methods: {
|
|
showMyPolice(){
|
|
this.triggerEvent('showMyPolice')
|
|
},
|
|
showPrecaution(){
|
|
this.triggerEvent('showPrecaution')
|
|
},
|
|
showAnnouncement(){
|
|
this.triggerEvent('showAnnouncement')
|
|
}
|
|
}
|
|
})
|