🔱: [client] sync upgrade with 4 commits [trident-sync]

feat: 示例全面改成useFsAsync
chore:
perf: 示例改成useFsAsync
This commit is contained in:
GitHub Actions Bot
2024-11-06 19:26:07 +00:00
parent 3dd0783510
commit 575416a16d
219 changed files with 910 additions and 867 deletions
@@ -5,7 +5,7 @@ import { message } from "ant-design-vue";
import { computed } from "vue";
const { asyncCompute, compute } = useCompute();
export default function ({ crudExpose, context }: CreateCrudOptionsProps): CreateCrudOptionsRet {
export default async function ({ crudExpose, context }: CreateCrudOptionsProps): Promise<CreateCrudOptionsRet> {
const pageRequest = async (query: UserPageQuery): Promise<UserPageRes> => {
return await api.GetList(query);
};