0
FirebaseとVueJSでuser-/login-/authentication-systemを作っています。Firebase + VueJS:v-forループ内のデータを強調表示
私は、オンラインの各人の名前をどのように強調表示するのだろうか(私のfirebase-sessions
-listにエントリがある)。
私のデータベース構造:セッションのための
- users:
- [userKey]:
- ... user information
:
- sessions:
- [userKey]:
- ... session information
テンプレートパーツ:ユーザーのための
<table>
<tr class="user" v-for="user in $store.state.authentication.users">
<td class="name">{{ user.name }}</td>
...
</tr>
</table>
アドバイスはありますか?