Hangar/frontend/pages/notifications.vue

13 lines
252 B
Vue
Raw Normal View History

2021-01-22 01:19:00 +08:00
<template>
<div>{{ $nuxt.$route.name }}</div>
</template>
<script lang="ts">
import { Component, Vue } from 'nuxt-property-decorator';
@Component
export default class NotificationsPage extends Vue {}
</script>
<style lang="scss" scoped></style>