This commit is contained in:
Your Name
2026-03-01 14:17:59 +08:00
parent 65aa12f146
commit a07e844c47
6071 changed files with 777651 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
<template>
<div class="bg-white render-html p-[30px] w-[1200px] mx-auto min-h-screen">
<h1 class="text-center">{{ data.title }}</h1>
<div class="mx-auto" v-html="data.content"></div>
</div>
</template>
<script lang="ts" setup>
import { getPolicy } from '~~/api/app'
const route = useRoute()
const { data } = await useAsyncData(
() =>
getPolicy({
type: route.params.type
}),
{
initialCache: false
}
)
definePageMeta({
layout: 'blank'
})
</script>
<style lang="scss" scoped></style>