Compare commits

...

2 Commits

Author SHA1 Message Date
Lexcubia 226f3ff476 update: 移除 CustomerBackground 组件中的头部模板 2025-04-21 10:36:30 +08:00
Lexcubia 8dfa86e466 update: 注释掉 Electron 插件配置 2025-04-21 10:36:17 +08:00
2 changed files with 4 additions and 9 deletions

View File

@ -7,11 +7,6 @@
class="customer-background-dialog"
:fullscreen="isMobile"
>
<template #header>
<div class="dialog-header">
<h3 class="dialog-title">客户信息</h3>
</div>
</template>
<div class="background-info-content" v-if="currentMode">
<div v-html="formattedBackground"></div>
</div>

View File

@ -2,7 +2,7 @@ import { fileURLToPath, URL } from 'node:url'
import { defineConfig, loadEnv } from 'vite'
import vue from '@vitejs/plugin-vue'
import electron from 'vite-plugin-electron'
// import electron from 'vite-plugin-electron'
// import vueDevTools from 'vite-plugin-vue-devtools'
// https://vite.dev/config/
@ -18,9 +18,9 @@ export default defineConfig(({ command, mode }) => {
return {
plugins: [
vue(),
electron({
entry: 'electron/main.js',
}),
// electron({
// entry: 'electron/main.js',
// }),
// vueDevTools(),
],
resolve: {