/** * utils 统一导出入口 * * 提供多种导入方式: * * 1. 分类导入: * import { formatAmount } from '@/utils/functions' * import { OrderCalculator } from '@/utils/classes' * import { convertBoxBrandToOrderPackages } from '@/utils/converters' * * 2. 统一导入: * import { formatAmount, OrderCalculator } from '@/utils' * * 3. 命名空间导入: * import * as UtilsFunctions from '@/utils/functions' * import * as UtilsClasses from '@/utils/classes' * import * as UtilsConverters from '@/utils/converters' * import * as Utils from '@/utils' */ // 纯函数工具 export * from "./functions"; // 数据转换器 export * from "./converters"; // 类工具 export * from "./classes";