11 lines
392 B
Vue
11 lines
392 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: '/disclaimer' })
|
|
</script>
|
|
|