refactor: remove unused props definition in ChatMessageList component

This commit is contained in:
Marvin Zhang
2025-05-19 09:11:09 +08:00
parent f1f74d8a6a
commit da024f7b6f

View File

@@ -1,9 +1,9 @@
<script setup lang="ts">
import { defineProps, ref, nextTick } from 'vue';
import { ref, nextTick } from 'vue';
import { ElScrollbar } from 'element-plus';
import { debounce } from 'lodash';
const props = defineProps<{
defineProps<{
messages: ChatMessage[];
isLoading: boolean;
error?: string;