mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-09 06:32:43 +08:00
15 lines
268 B
Vue
15 lines
268 B
Vue
<template>
|
|
<div>{{ $nuxt.$route.name }}</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'nuxt-property-decorator';
|
|
|
|
// TODO linkout page
|
|
|
|
@Component
|
|
export default class LinkoutPage extends Vue {}
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|