Work on room info and start on profile view

This commit is contained in:
N-Pex 2021-01-20 14:44:10 +01:00
parent 6e0e1dd31c
commit 19e8b64e7b
8 changed files with 403 additions and 87 deletions

View file

@ -19,27 +19,19 @@
</v-row>
<!-- "REALLY LEAVE?" dialog -->
<v-dialog v-model="showLeaveConfirmation" class="ma-0 pa-0" width="50%">
<v-card>
<v-card-title>Are you sure you want to leave?</v-card-title>
<v-card-text>
<div>You may not be able to rejoin.</div>
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
<v-btn text @click="showLeaveConfirmation = false">Cancel</v-btn>
<v-btn color="primary" text @click="doLeaveRoom();showLeaveConfirmation = false">Next</v-btn>
</v-card-actions>
</v-card>
</v-dialog>
<LeaveRoomDialog :show="showLeaveConfirmation" :room="room" @close="showLeaveConfirmation = false" />
</v-container>
</template>
<script>
import LeaveRoomDialog from '../components/LeaveRoomDialog';
export default {
name: "ChatHeader",
components: {
LeaveRoomDialog
},
data() {
return {
memberCount: null,