Hangar/frontend/pages/logged-out.vue
MiniDigger c420e5dd33 refactor title and description generation
Signed-off-by: MiniDigger <admin@minidigger.me>

#382
2021-05-22 20:48:45 +02:00

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>