11 lines
422 B
Vue
11 lines
422 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: '/consulting/intro' })
|
|
</script>
|
|
|