feat: 新增账号设置组件

This commit is contained in:
duanshuwen
2025-12-07 19:58:03 +08:00
parent b643972d21
commit 1d8ee0bf64
6 changed files with 123 additions and 19 deletions

View File

@@ -0,0 +1,25 @@
<template>
<div class="box-border border-b-[1px] border-b-[#E5E8EE] mb-[20px] pb-[20px]">
<span class="text-[24px] font-500 text-[#171717] leading-[32px] mr-[8px]">
{{ title }}
</span>
<span class="text-[12px] font-400 text-[#99A0AE] leading-[16px]">
{{ desc }}
</span>
</div>
</template>
<script setup lang="ts">
import { defineProps } from 'vue'
const props = defineProps({
title: {
type: String,
default: ''
},
desc: {
type: String,
default: ''
}
})
</script>