<template>
<progress-button
:label="mission.name"
:description="mission.description"
:max="max"
:value="value"
:unit="unit"
@click="complete"
/>
</template>
<script>
export default {
props: {
mission: { type: Object, required: true },
},
computed: {
value() {
return 'cost' in this.mission.completionCriteria
? this.$store.state.currency
: this.$store.state.playerAge
max() {
? this.mission.completionCriteria.cost
: this.$store.state.playerAgeMax
unit() {
return 'cost' in this.mission.completionCriteria ? 'spareTime' : 'age'
methods: {
complete() {
this.$store.commit('completeMission', this.mission)
}
</script>