14 lines
232 B
Vue
14 lines
232 B
Vue
|
<script setup lang="ts">
|
||
|
|
||
|
definePageMeta({
|
||
|
title:'隐私政策'
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="px-10px py-20px"><iframe class="w-full h-100vh" src="/privacyPolicy.html"></iframe></div>
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|