blob: 242c04fc79c659925327c2a147d4fc86b554150a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<template functional>
<div class="user-list">
<basic-user-card
v-for="entry in entries"
:key="entry.id"
:user="entry"
/>
</div>
</template>
<script src="./user_list.js"></script>
|