This commit is contained in:
syuilo
2022-12-30 13:37:14 +09:00
parent 254fede524
commit 632c7d2ac6
38 changed files with 90 additions and 90 deletions

View File

@@ -1,13 +1,13 @@
<template>
<div :class="$style.root">
<transition :name="$store.state.animation ? 'zoom' : ''" mode="out-in">
<Transition :name="$store.state.animation ? 'zoom' : ''" mode="out-in">
<MkLoading v-if="fetching"/>
<div v-else class="users">
<MkA v-for="(user, i) in newUsers" :key="user.id" :to="`/user-info/${user.id}`" class="user">
<MkUserCardMini :user="user"/>
</MkA>
</div>
</transition>
</Transition>
</div>
</template>