2
0
mirror of https://github.com/HangarMC/Hangar.git synced 2024-12-09 06:32:43 +08:00
Hangar/frontend/pages/logged-out.vue
2021-04-03 23:20:20 -07:00

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>