mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-09 06:32:43 +08:00
16 lines
343 B
Vue
16 lines
343 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 {}
|
|
</script>
|
|
|
|
<style scoped></style>
|