2👍
✅
I think this is because you need to use array instead of dot syntax to access the values:
gs-input(
label="From",
v-bind:prop1="values['key' + index + 'vals']" // Does work
v-bind:prop2="values[`key${index}vals`]" // Does work
)
Source:stackexchange.com