mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-30 02:13:05 +00:00
24 lines
486 B
Vue
24 lines
486 B
Vue
<script setup lang='ts'>
|
|
import { GithubSite } from '@/components/custom'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex items-center">
|
|
<div class="w-10 h-10 overflow-hidden rounded-full">
|
|
<img class="object-cover" src="@/assets/avatar.jpg" alt="avatar">
|
|
</div>
|
|
<div class="ml-2">
|
|
<h2 class="font-bold text-md">
|
|
ChenZhaoYu
|
|
</h2>
|
|
<p class="text-xs text-gray-500">
|
|
<GithubSite />
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
|
|
</style>
|