2025-06-06 12:33:02 +08:00
|
|
|
|
import { defineAsyncComponent } from 'vue';
|
|
|
|
|
|
|
2025-09-25 09:38:51 +08:00
|
|
|
|
// TODO @xingyu:我直接引入,貌似没问题呀。
|
|
|
|
|
|
// TODO @xingyu:apps/web-antd/src/views/crm/followup/index.ts 走的异步组件,不过名字是 FollowUp 没 Async。可能要一起讨论怎么保持相对的一致性
|
2025-06-06 12:33:02 +08:00
|
|
|
|
export const AsyncOperateLog = defineAsyncComponent(
|
|
|
|
|
|
() => import('./operate-log.vue'),
|
|
|
|
|
|
);
|
|
|
|
|
|
|
2025-06-03 18:44:13 +08:00
|
|
|
|
export { default as OperateLog } from './operate-log.vue';
|
|
|
|
|
|
|
|
|
|
|
|
export type { OperateLogProps } from './typing';
|