feat: 绘画功能本地图片存储优化

ui: 优化字体
This commit is contained in:
2024-03-20 18:00:04 +08:00
parent e69774679a
commit 75f431d7bf
9 changed files with 181 additions and 59 deletions

View File

@@ -1,4 +1,3 @@
import {string} from 'yup';
import type {ResultBlockMeta} from '~/components/aigc/drawing';
export interface HistoryItem {
@@ -6,7 +5,7 @@ export interface HistoryItem {
data_id?: string
prompt: string
meta: ResultBlockMeta
images: string[]
images?: string[]
}
export const useHistory = defineStore('aigc_history', () => {