Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在图像中添加链接。我怎样才能点击“fork me ...”并重定向到http?
我正在使用 Vue。
<div class="menu"> <div>...navbar...<div> <div class="forkme"> <img class="forkmeFigure" src="@/static/forkme-dark-background.png"> </div> </div>
您可以简单地添加一个锚作为包装器:
<a href="http://www.stackoverflow.com"> <img class="forkmeFigure" src="@/static/forkme-dark-background.png"> </a>