add image editing features

This commit is contained in:
2025-03-04 01:29:29 +08:00
parent 3f4bf14533
commit 08d4bbfbf9
29 changed files with 45044 additions and 297 deletions

View File

@@ -54,6 +54,8 @@ export const useImageStore = defineStore(
// 图片编辑
const imageEditVisible = ref<boolean>(false);
/**
* 获取人脸列表
*/

View File

@@ -41,10 +41,14 @@ export const useSearchStore = defineStore(
const option = options.find(option => option.value === value);
return option ? option.icon : undefined;
};
// 图片搜索结果
const searchResult = ref<any[]>([]);
return {
searchOption,
options,
searchValue,
searchResult,
getIconByValue
};
},