Files
webman-buildadmin/web/src/views/backend/test/pushOperationNotice/index.vue
2026-04-18 15:48:31 +08:00

11 lines
316 B
Vue

<template>
<PushChannelTestPage config-api="/admin/test.PushOperationNotice/pushConfig" :tip="t('test.pushOperationNotice.tip')" />
</template>
<script setup lang="ts">
import { useI18n } from 'vue-i18n'
import PushChannelTestPage from '../components/PushChannelTestPage.vue'
const { t } = useI18n()
</script>