Invites can now be managed to some extent

This commit is contained in:
Thaum Rystra
2020-05-12 14:11:43 +02:00
parent 47206ccfc4
commit bbda0ea1b6
8 changed files with 230 additions and 17 deletions

View File

@@ -0,0 +1,22 @@
<template lang="html">
<div>
Invite Error!
<p>
{{ error.reason || error.message || error }}
</p>
</div>
</template>
<script>
export default {
props: {
error: {
type: [Object, String],
required: true,
}
}
}
</script>
<style lang="css" scoped>
</style>