20 lines
394 B
Vue
20 lines
394 B
Vue
<template>
|
|
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md overflow-hidden">
|
|
<div class="p-8">
|
|
<h1
|
|
class="text-3xl font-bold text-center text-blue-600 mb-10 pb-6 border-b border-gray-200"
|
|
>
|
|
用户协议
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: "header",
|
|
});
|
|
</script>
|
|
|
|
<style scoped></style>
|