1
0
Files
ag-index/nuxt-web/pages/solutions/logistics-chain.vue
2026-04-20 09:45:20 +08:00

10 lines
346 B
Vue

<script setup lang="ts">
import { solutions } from '~/data/solutions'
const page = solutions['logistics-chain']
useSeo({ title: page.title, description: page.description, keywords: '岸基科技,全程物流链,解决方案', canonicalPath: '/solutions/logistics-chain' })
</script>
<template>
<SolutionPageLayout v-bind="page" />
</template>