Files
nexus-terminal/packages/frontend/src/views/NotificationsView.vue
T
Baobhan Sith c026a42d06 update
2025-04-15 18:59:56 +08:00

18 lines
421 B
Vue

<template>
<div class="notifications-view">
<!-- <h1>{{ $t('nav.notifications') }}</h1> --> <!-- Add nav.notifications to i18n later -->
<h1>通知管理</h1> <!-- Temporary title -->
<NotificationSettings />
</div>
</template>
<script setup lang="ts">
import NotificationSettings from '../components/NotificationSettings.vue';
</script>
<style scoped>
.notifications-view {
padding: 20px;
}
</style>