refactor(@vben/web-antd): 完成ppt部分功能

This commit is contained in:
vertoryao 2025-05-05 23:39:17 +08:00
parent 25aa48085a
commit ba8fc04c94

View File

@ -149,6 +149,14 @@ const isFetching = ref(false);
const fetchResult = ref('');
const fetchStatus = ref('');
const value = ref('');
interface ResultItem {
key: number;
role: 'ai' | 'user';
content: string;
footer?: any;
}
const resultItems = ref<ResultItem[]>([]);
</script>