mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-24 23:13:47 +00:00
feat: 添加用户头像
This commit is contained in:
12
src/components/business/Chat/layout/sider/List.vue
Normal file
12
src/components/business/Chat/layout/sider/List.vue
Normal file
@@ -0,0 +1,12 @@
|
||||
<script setup lang='ts'>
|
||||
import { NScrollbar } from 'naive-ui'
|
||||
import ListItem from './ListItem.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<NScrollbar class="px-4">
|
||||
<div class="flex flex-col gap-2 text-sm">
|
||||
<ListItem v-for="(_, index) of 4" :key="index" text="hello world" />
|
||||
</div>
|
||||
</NScrollbar>
|
||||
</template>
|
Reference in New Issue
Block a user