18 lines
421 B
Vue
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>
|