0👍
✅
You should not use interpolation inside attribute values.
Please, try:
<button v-on:click="addName(index, 'susan')">Susan</button>
You can use the shorthand @
for v-on
:
<button @click="addName(index, 'susan')">Susan</button>
Source:stackexchange.com