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

Viewed 17

I have a data file of Json type and I can easily pull and print the data here. But for some reason, I can't print the link from the href="{{data.winnerlink}} or href="etherscan.io/tx/{{data.winner}}", even though I tried the following.

1 Answers

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

Related