I need assistance with passing a variable called snAvatarSnuid
within the img src tag, specifically after facebook.com/ and before /picture as shown below:
<img alt="Avatar" src=`https://graph.facebook.com/${snAvatarSnuid}/picture`>
Note: 1) The https://graph.facebook.com/
& /picture
sections of the src remain the same, only the value of snAvatarSnuid
needs to be inserted in between.
2) The variable snAvatarSnuid
is defined in the data of a Vue component
Can someone help me identify what I am doing wrong? How can I resolve this issue?