This commit is contained in:
quantulr
2023-10-29 18:37:44 +08:00
commit 373b3d9dff
1813 changed files with 131892 additions and 0 deletions

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.name }}</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>