0👍
✅
You can just put the expression in a v-bind like this
v-bind:value="pillemaal - 120"
or
:value="pillemaal - 120"
v-model wont work because you can’t two way bind with an expression.
Source:stackexchange.com