Skip to content

Instantly share code, notes, and snippets.

View kabitacode's full-sized avatar
🎯
Focusing

Muhamad Zulfiqor kabitacode

🎯
Focusing
View GitHub Profile
<template>
<div>
<ul v-for="user in users" :key="user.id">
<li>
<span>{{user.name}}</span> &#160;
</li>
</ul>
</div>
</template>