10 lines
333 B
Vue
10 lines
333 B
Vue
<script setup lang="ts">
|
|
import { services } from '~/data/services'
|
|
const page = services.yunmatou
|
|
useSeo({ title: page.title, description: page.description, keywords: '岸基科技,云码头智能管理系统,服务页', canonicalPath: '/services/yunmatou' })
|
|
</script>
|
|
|
|
<template>
|
|
<ServicePageLayout v-bind="page" />
|
|
</template>
|