Files
pc-10588/app/pages/member/apply.vue

11 lines
409 B
Vue

<template>
<SectionStub title="会员申请" description="在线填写申请信息并上传材料,提交后进入资格审核流程。" />
</template>
<script setup lang="ts">
import SectionStub from '@/components/SectionStub.vue'
import { usePageSeo } from '@/composables/usePageSeo'
usePageSeo({ title: '会员申请', description: '会员服务 - 会员申请。', path: '/member/apply' })
</script>