11 lines
316 B
Vue
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>
|