diff --git a/components/ProgressButton.vue b/components/ProgressButton.vue index 3b758b9..1185c7a 100644 --- a/components/ProgressButton.vue +++ b/components/ProgressButton.vue @@ -1,27 +1,34 @@ - {{ value }} / {{ max }} + {{ cappedValue }} / {{ max }} + + + Current: {{ current }} + + Next: {{ next }} + @@ -35,8 +42,13 @@ export default { max: { type: Number, required: true }, value: { type: [Number, Decimal], required: true }, unit: { type: String, default: null }, + current: { type: String, default: null }, + next: { type: String, default: null }, }, computed: { + cappedValue() { + return this.value > this.max ? this.max : this.value + }, clickable() { return this.value >= this.max }, @@ -52,9 +64,6 @@ export default {