[Vuejs]-How can I give an href to the link I took from my json data file?

1👍

The {{ }} syntax can’t be used inside of dynamic attributes. Also, you need to prefix with v-bind: or short :.

Try this: :href="data.winnerlink"

Vue.js Documentation

Leave a comment