Working room & client refactor

This commit is contained in:
Thomas
2020-07-31 13:49:37 +02:00
parent e8247a1ba3
commit c577d8f360
11 changed files with 549 additions and 177 deletions

View File

@@ -0,0 +1,23 @@
<template>
<div>
<h1 class="subtitle">{{roomCode}}</h1>
<qrcode :value="roomCode" :options="{ width: 200 }"/>
</div>
</template>
<script>
import qrcode from '@chenfengyuan/vue-qrcode'
export default {
name: 'Invite',
components: {
qrcode
},
props: {
roomCode: {
type: String,
default: 'abc'
}
}
}
</script>