用于运行窗口设计师设计好界面和程序
创建项目
wails init -n "go-easy-demo" -t https://github.com/duolabmeng6/wails-template-vue-go-easy
运行窗口
cd go-easy-demo
wails dev
网页端仅提供基本的界面设计,如需更好编码体验,请下载客户端.
国内地址: https://go.kenhong.com/
国外地址: https://g.yx24.me
画好界面点保存,会下载2个文件 design.json
,__aux_code.js
注意你的浏览器允许下载多个文件的权限
下载本项目的代码 复制 go-easy-demo
文件夹作为开发项目
go-easy-demo/frontend/src/win/design.json
go-easy-demo/frontend/src/win/__aux_code.js
运行项目 就可以看到你设计好的界面了.
cd go-easy-demo
wails dev
为了提高调试速度我删除了运行时编译的命令
你需要在 wails.json 删除这个注释 (编译的时候删除这一句话可以加快调试速度)
{
"$schema": "https://wails.io/schemas/config.v2.json",
"name": "myproject",
"outputfilename": "myproject",
"frontend:install": "pnpm install",
"frontend:build(编译的时候删除这一句话可以加快调试速度)": "npm run build",
"frontend:dev:watcher": "npm run dev",
"frontend:dev:serverUrl": "auto",
"author": {
"name": "“xxxxxxx”",
"email": "xxxxxxx@qq.com"
}
}
然后就可以编译了
wails build