perf: operateLog

This commit is contained in:
xingyu4j
2025-06-06 12:33:02 +08:00
parent 2172930923
commit 231de628d3
2 changed files with 24 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
import { defineAsyncComponent } from 'vue';
export const AsyncOperateLog = defineAsyncComponent(
() => import('./operate-log.vue'),
);
export { default as OperateLog } from './operate-log.vue';
export type { OperateLogProps } from './typing';