15 lines
345 B
Vue
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>
|