How can I solve “Interpolation inside attributes has been removed. Use v-bind or the colon shorthand”? Vue.js 2

Use JavaScript code inside v-bind (or shortcut “:”):

:href="'#purchase-' + item.id"

and

:id="'purchase-' + item.id"

Or if using ES6 or later:

:id="`purchase-${item.id}`"

Leave a Comment