Files
aiot-platform-ui/apps/web-antd/src/components/operate-log/index.ts

12 lines
480 B
TypeScript
Raw Normal View History

2025-06-06 12:33:02 +08:00
import { defineAsyncComponent } from 'vue';
// TODO @xingyu我直接引入貌似没问题呀。
// TODO @xingyuapps/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';