mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-01-12 14:06:14 +08:00
c420e5dd33
Signed-off-by: MiniDigger <admin@minidigger.me> #382
20 lines
437 B
Vue
20 lines
437 B
Vue
<template>
|
|
<div>Logged out</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component } from 'nuxt-property-decorator';
|
|
import { HangarComponent } from '~/components/mixins';
|
|
import { NotLoggedIn } from '~/utils/perms';
|
|
|
|
@Component({})
|
|
@NotLoggedIn
|
|
export default class LoggedOutPage extends HangarComponent {
|
|
head() {
|
|
return this.$seo.head('Logged out', null, this.$route, null);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|