10 lines
335 B
Vue
10 lines
335 B
Vue
<script setup lang="ts">
|
|
import { services } from '~/data/services'
|
|
const page = services.changzhan
|
|
useSeo({ title: page.title, description: page.description, keywords: '岸基科技,集装箱场站管理系统,服务页', canonicalPath: '/services/changzhan' })
|
|
</script>
|
|
|
|
<template>
|
|
<ServicePageLayout v-bind="page" />
|
|
</template>
|