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.
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.
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"