11 lines
402 B
Vue
11 lines
402 B
Vue
<template>
|
|
<SectionStub title="使用条款" description="本页面用于发布网站使用条款与服务协议。" :show-result="false" />
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SectionStub from '@/components/SectionStub.vue'
|
|
import { usePageSeo } from '@/composables/usePageSeo'
|
|
usePageSeo({ title: '使用条款', description: '使用条款与服务协议。', path: '/terms' })
|
|
</script>
|
|
|