# 小工具(wails+vue) **Repository Path**: HP-L/small-tools-wails ## Basic Information - **Project Name**: 小工具(wails+vue) - **Description**: wails+vue - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-04-26 - **Last Updated**: 2026-04-27 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## 依赖说明 ### Go 依赖 ```go require ( github.com/jmoiron/sqlx v1.4.0 github.com/wailsapp/wails/v2 v2.12.0 gopkg.in/yaml.v3 v3.0.1 modernc.org/sqlite v1.50.0 ) ``` ### 前端依赖 ```json { "dependencies": { "vue": "^3.4.0", "vue-router": "^4.2.0", "element-plus": "^2.5.0", "@element-plus/icons-vue": "^2.3.1", "xlsx": "^0.18.5" }, "devDependencies": { "@vitejs/plugin-vue": "^5.0.0", "typescript": "^5.3.0", "vite": "^5.0.0" } } ``` ## 代理配置 由于 Go 模块和 npm 包可能需要访问外网,建议配置国内镜像加速: ### Go 代理配置 ```bash # 设置 GOPROXY 代理(推荐使用国内镜像) go env -w GOPROXY=https://goproxy.cn,direct # 或使用阿里云镜像 go env -w GOPROXY=https://mirrors.aliyun.com/goproxy/,direct ``` ### npm 代理配置 ```bash # 设置 npm 镜像源(推荐使用淘宝镜像) npm config set registry https://registry.npmmirror.com # 如需使用官方源 npm config set registry https://registry.npmjs.org/ ``` ### 公司内网代理(如需要) ```bash # 设置 HTTP 代理 npm config set proxy http://proxy.company.com:8080 npm config set https-proxy http://proxy.company.com:8080 ``` 也可以在 `frontend` 目录下创建 `.npmrc` 文件: