feat: 用户设置

This commit is contained in:
wf 2024-06-20 18:27:51 +08:00
parent 346ff42d1d
commit 7dce737aed

View File

@ -1,7 +1,25 @@
<template> <template>
<div class="dc-page">用户设置</div> <div class="dc-page">
<a-row>
<a-col :span="4">
<div>
<a-avatar :size="100">
<img alt="avatar" :src="myImage" />
</a-avatar>
</div>
</a-col>
<a-col :span="6">
<div>头像</div>
</a-col>
<a-col :span="6">
<div>头像</div>
</a-col>
</a-row>
</div>
</template> </template>
<script setup lang="ts"></script> <script setup lang="ts">
import myImage from "@/assets/img/my-image.jpg";
</script>
<style lang="scss" scoped></style> <style lang="scss" scoped></style>