Files
DiceCloud/app/imports/ui/pages/InviteError.vue
2020-05-19 00:28:31 +02:00

31 lines
450 B
Vue

<template lang="html">
<div>
<v-layout
column
align-center
justify-center
>
<h2 style="margin: 48px 28px 16px">
Invite Error
</h2>
<h3>
{{ error.reason || error.message || error }}
</h3>
</v-layout>
</div>
</template>
<script>
export default {
props: {
error: {
type: [Object, String],
default: '',
}
}
}
</script>
<style lang="css" scoped>
</style>