Skip to content

Instantly share code, notes, and snippets.

@artrayd
Last active July 5, 2020 07:19
Show Gist options
  • Save artrayd/28d955ad9f19b33cce8730e9a1be8ebe to your computer and use it in GitHub Desktop.
Save artrayd/28d955ad9f19b33cce8730e9a1be8ebe to your computer and use it in GitHub Desktop.
V-Loop
<template>
<ul class="alphabet">
<li v-for="letter in letters" :key="letter.name">
<img :src="letterIcon(letter.path)" />
<span>{{ letter.name }}</span>
<div class="tooltip">{{ letter.alt }}</div>
</li>
</ul>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment