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