24 lines
355 B
Vue
24 lines
355 B
Vue
<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>
|