feat: 添加通知页面并更新路由和国际化支持
This commit is contained in:
23
src/views/notify/index.vue
Normal file
23
src/views/notify/index.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<script setup lang="ts">
|
||||
import IconParkOutlineClearFormat from "~icons/icon-park-outline/clear-format";
|
||||
import MaterialSymbolsAndroidContacts from "~icons/material-symbols/android-contacts";
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<IonPage>
|
||||
<IonHeader class="ion-no-border">
|
||||
<ion-toolbar class="ui-toolbar">
|
||||
<ion-button slot="start" fill="clear">
|
||||
<IconParkOutlineClearFormat slot="icon-only" />
|
||||
</ion-button>
|
||||
<ion-button slot="end" fill="clear">
|
||||
<MaterialSymbolsAndroidContacts slot="icon-only" />
|
||||
</ion-button>
|
||||
<ion-title>通知</ion-title>
|
||||
</ion-toolbar>
|
||||
</IonHeader>
|
||||
<IonContent :fullscreen="true">
|
||||
<ion-searchbar placeholder="Search" />
|
||||
</IonContent>
|
||||
</IonPage>
|
||||
</template>
|
||||
Reference in New Issue
Block a user