Create room

Work on issue #67
This commit is contained in:
N-Pex 2021-03-23 16:20:01 +01:00
parent f5587ce0c9
commit 6e6bae4caa
4 changed files with 265 additions and 16 deletions

View file

@ -25,6 +25,13 @@
>
</div>
<room-list :title="'Other groups'" v-on:close="close" />
<v-btn
height="20px"
color="black"
class="outlined-button"
@click.stop="createRoom"
>Create group</v-btn
>
</div>
</SwipeableBottomSheet>
</template>
@ -72,7 +79,13 @@ export default {
showDetails() {
this.close();
this.$navigation.push({ name: "RoomInfo" });
},
createRoom() {
this.close();
this.$navigation.push({ name: "CreateRoom" });
}
},
};
</script>