'How to display dynamic placeholder text of <v-text-field> in Vuetify?

The text field is somewhat like this:

<v-text-field v-model="input" placeholder="(0 - 200)">
</v-text-field>

Vue.js data contains:

export default {
data () {
    return {
        input: '',
        proposed: 0  
        }
    }
}

I'd like the placeholder to display something like this:

placeholder="Proposed quantity: 2 (0 - 200)"

Tried setting the proposed variable with e.g.:

a) placeholder="Proposed quantity: {proposed} (0 - 200)"
b) placeholder="Proposed quantity: `${proposed}` (0 - 200)"
c) placeholder="Proposed quantity: " + proposed + " (0 - 200)"

and none worked.

Any other ideas and suggestions?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source