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

15 lines
345 B
Vue

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