修复清空历史订单时消失又出现问题

This commit is contained in:
2026-03-20 10:45:47 +08:00
parent b3d153ab86
commit 2a47effa45
4 changed files with 153 additions and 46 deletions

View File

@@ -15,6 +15,9 @@ import { name, version, engines, dependencies, devDependencies } from "./package
import stripCode from 'vite-plugin-strip-code'; // 导入插件
import vueDevTools from 'vite-plugin-vue-devtools'
// 平台的名称、版本、运行所需的 node 版本、依赖、构建时间的类型提示
const __APP_INFO__ = {
pkg: { name, version, engines, dependencies, devDependencies },
@@ -114,7 +117,8 @@ export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
// 注意:标记可以自定义,只要前后一致即可
start_comment: 'DEV-START', // 开始标记(自定义)
end_comment: 'DEV-END' // 结束标记(自定义)
})
}),
// vueDevTools()
],
// 预加载项目必需的组件
optimizeDeps: {