mirror of
https://github.com/Rate-Limiting-Nullifier/Discreetly.git
synced 2026-01-09 12:37:55 -05:00
12 lines
255 B
Vue
12 lines
255 B
Vue
<template>
|
|
<ul class="list-group">
|
|
<li v-for="(room, index) in rooms" :key="index" class="list-group-item" :class="{ active: currentRoom === room }"
|
|
@click="switchRoom(room)">
|
|
{{ room }}
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
<script>
|
|
|
|
</script>
|