gitextract_we96msoa/ ├── .github/ │ ├── release-drafter.yml │ ├── releasesText.md │ └── workflows/ │ ├── debug.yml │ ├── jekyll-gh-pages.yml │ └── 发布软件.yml ├── .gitignore ├── .gitmodules ├── CNAME ├── GoEasyDesigner/ │ ├── .gitignore │ ├── Dockerfile │ ├── Terminal/ │ │ ├── Terminal_darwin.go │ │ ├── Terminal_darwin_test.go │ │ ├── Terminal_window.go │ │ └── Terminal_window_test.go │ ├── app.go │ ├── build/ │ │ ├── README.md │ │ ├── darwin/ │ │ │ ├── Info.dev.plist │ │ │ └── Info.plist │ │ ├── dmg.sh │ │ └── windows/ │ │ ├── info.json │ │ ├── installer/ │ │ │ ├── project.nsi │ │ │ └── wails_tools.nsh │ │ └── wails.exe.manifest │ ├── docker-compose.yml │ ├── frontend/ │ │ ├── README.md │ │ ├── index.html │ │ ├── jsconfig.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── public/ │ │ │ ├── 1.html │ │ │ ├── cdn.tailwindcss.com_3.4.5.js │ │ │ ├── font-awesome.css │ │ │ ├── releases_latest.json │ │ │ └── 自定义组件/ │ │ │ ├── ColorfulText/ │ │ │ │ ├── ColorfulText.js │ │ │ │ ├── ColorfulText.vue │ │ │ │ └── ColorfulTextAttr.vue │ │ │ ├── TimeProgressBar/ │ │ │ │ ├── TimeProgressBar.js │ │ │ │ ├── TimeProgressBar.vue │ │ │ │ └── TimeProgressBarAttr.vue │ │ │ ├── components.json │ │ │ ├── 流光边框/ │ │ │ │ ├── 流光边框.js │ │ │ │ ├── 流光边框.vue │ │ │ │ └── 流光边框属性.vue │ │ │ └── 登录框/ │ │ │ ├── 登录框.js │ │ │ ├── 登录框.vue │ │ │ └── 登录框属性.vue │ │ ├── src/ │ │ │ ├── Helper.js │ │ │ ├── action/ │ │ │ │ └── app.js │ │ │ ├── app10.vue │ │ │ ├── app11.vue │ │ │ ├── assets/ │ │ │ │ ├── base.css │ │ │ │ └── main.css │ │ │ ├── components/ │ │ │ │ ├── RenderDesignComponent.vue │ │ │ │ ├── RenderDesignComponentPreview.vue │ │ │ │ ├── RenderDesignComponentWin.vue │ │ │ │ ├── Shape.vue │ │ │ │ ├── boxs/ │ │ │ │ │ ├── el/ │ │ │ │ │ │ ├── Button/ │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ ├── Button.vue │ │ │ │ │ │ │ └── ButtonAttr.vue │ │ │ │ │ │ ├── CheckBox/ │ │ │ │ │ │ │ ├── CheckBox.js │ │ │ │ │ │ │ ├── CheckBox.vue │ │ │ │ │ │ │ └── CheckBoxAttr.vue │ │ │ │ │ │ ├── CommonLayout/ │ │ │ │ │ │ │ ├── CommonLayout.js │ │ │ │ │ │ │ ├── CommonLayout.vue │ │ │ │ │ │ │ └── CommonLayoutAttr.vue │ │ │ │ │ │ ├── Container/ │ │ │ │ │ │ │ ├── Container.js │ │ │ │ │ │ │ └── ContainerAttr.vue │ │ │ │ │ │ ├── ControlButton/ │ │ │ │ │ │ │ ├── ControlButton.js │ │ │ │ │ │ │ ├── ControlButton.vue │ │ │ │ │ │ │ └── ControlButtonAttr.vue │ │ │ │ │ │ ├── CustomComponent/ │ │ │ │ │ │ │ ├── CustomComponent.js │ │ │ │ │ │ │ ├── CustomComponent.vue │ │ │ │ │ │ │ └── CustomComponentAttr.vue │ │ │ │ │ │ ├── FlexLayout/ │ │ │ │ │ │ │ ├── FlexLayout.js │ │ │ │ │ │ │ ├── FlexLayout.vue │ │ │ │ │ │ │ └── FlexLayoutAttr.vue │ │ │ │ │ │ ├── Label/ │ │ │ │ │ │ │ ├── Label.js │ │ │ │ │ │ │ ├── Label.vue │ │ │ │ │ │ │ └── LabelAttr.vue │ │ │ │ │ │ ├── Menu/ │ │ │ │ │ │ │ ├── Menu.js │ │ │ │ │ │ │ ├── Menu.vue │ │ │ │ │ │ │ └── MenuAttr.vue │ │ │ │ │ │ ├── ProgressBar/ │ │ │ │ │ │ │ ├── ProgressBar.js │ │ │ │ │ │ │ ├── ProgressBar.vue │ │ │ │ │ │ │ └── ProgressBarAttr.vue │ │ │ │ │ │ ├── RadioButton/ │ │ │ │ │ │ │ ├── RadioButton.js │ │ │ │ │ │ │ ├── RadioButton.vue │ │ │ │ │ │ │ └── RadioButtonAttr.vue │ │ │ │ │ │ ├── Switch/ │ │ │ │ │ │ │ ├── Switch.js │ │ │ │ │ │ │ ├── Switch.vue │ │ │ │ │ │ │ └── SwitchAttr.vue │ │ │ │ │ │ ├── Table/ │ │ │ │ │ │ │ ├── Table.js │ │ │ │ │ │ │ ├── Table.vue │ │ │ │ │ │ │ └── TableAttr.vue │ │ │ │ │ │ ├── Tabs/ │ │ │ │ │ │ │ ├── Tabs.js │ │ │ │ │ │ │ ├── Tabs.vue │ │ │ │ │ │ │ └── TabsAttr.vue │ │ │ │ │ │ ├── TabsTW/ │ │ │ │ │ │ │ ├── TabsTW.js │ │ │ │ │ │ │ ├── TabsTW.vue │ │ │ │ │ │ │ ├── TabsTWAttr.vue │ │ │ │ │ │ │ └── fontawesome_free_icon_names.js │ │ │ │ │ │ ├── TextEdit/ │ │ │ │ │ │ │ ├── TextEdit.js │ │ │ │ │ │ │ ├── TextEdit.vue │ │ │ │ │ │ │ └── TextEditAttr.vue │ │ │ │ │ │ ├── Tooltip/ │ │ │ │ │ │ │ ├── Tooltip.js │ │ │ │ │ │ │ ├── Tooltip.vue │ │ │ │ │ │ │ └── TooltipAttr.vue │ │ │ │ │ │ └── Tree/ │ │ │ │ │ │ ├── Tree.js │ │ │ │ │ │ ├── Tree.vue │ │ │ │ │ │ └── TreeAttr.vue │ │ │ │ │ ├── td/ │ │ │ │ │ │ ├── Button/ │ │ │ │ │ │ │ ├── Button.js │ │ │ │ │ │ │ ├── Button.vue │ │ │ │ │ │ │ └── ButtonAttr.vue │ │ │ │ │ │ ├── Link/ │ │ │ │ │ │ │ ├── Link.js │ │ │ │ │ │ │ ├── Link.vue │ │ │ │ │ │ │ └── LinkAttr.vue │ │ │ │ │ │ ├── Progress/ │ │ │ │ │ │ │ ├── Progress.js │ │ │ │ │ │ │ ├── Progress.vue │ │ │ │ │ │ │ └── ProgressAttr.vue │ │ │ │ │ │ ├── Select/ │ │ │ │ │ │ │ ├── Select.js │ │ │ │ │ │ │ ├── Select.vue │ │ │ │ │ │ │ └── SelectAttr.vue │ │ │ │ │ │ └── Switch/ │ │ │ │ │ │ ├── Switch.js │ │ │ │ │ │ ├── Switch.vue │ │ │ │ │ │ └── SwitchAttr.vue │ │ │ │ │ └── tw/ │ │ │ │ │ └── Button/ │ │ │ │ │ ├── Button.js │ │ │ │ │ ├── Button.vue │ │ │ │ │ └── ButtonAttr.vue │ │ │ │ ├── common/ │ │ │ │ │ └── IconSelector.vue │ │ │ │ └── designer/ │ │ │ │ ├── PreviewDialog.vue │ │ │ │ ├── header/ │ │ │ │ │ └── ToolBtn.vue │ │ │ │ ├── left/ │ │ │ │ │ ├── ComponentLeft.vue │ │ │ │ │ ├── PropertyTable.vue │ │ │ │ │ └── TreeSelectBox.vue │ │ │ │ └── public/ │ │ │ │ ├── DraggableDivider.vue │ │ │ │ ├── WindowAttr.vue │ │ │ │ ├── common-event-component.vue │ │ │ │ ├── common-properties.vue │ │ │ │ ├── 代码编辑器.vue │ │ │ │ ├── 支持库.vue │ │ │ │ ├── 新建项目对话框.vue │ │ │ │ ├── 项目管理.vue │ │ │ │ └── 项目配置对话框.vue │ │ │ ├── helpDoc/ │ │ │ │ └── systemFcDoc.json │ │ │ ├── i18n/ │ │ │ │ ├── index.js │ │ │ │ └── locales/ │ │ │ │ ├── en.json │ │ │ │ └── zh-Hans.json │ │ │ ├── main.js │ │ │ ├── public.js │ │ │ ├── stores/ │ │ │ │ ├── HistoryManager.js │ │ │ │ └── appStore.js │ │ │ ├── update_github_latest_releases.sh │ │ │ ├── 提示语法生成器.js │ │ │ ├── 测试代码编辑器.vue │ │ │ ├── 编辑器/ │ │ │ │ ├── 窗口事件代码模板.js │ │ │ │ ├── 编辑器提示数据.js │ │ │ │ └── 编辑器语法文件.js │ │ │ └── 编辑的语法提示.js │ │ ├── tailwind.config.js │ │ ├── vite.config.js │ │ └── wailsjs/ │ │ ├── go/ │ │ │ └── main/ │ │ │ ├── App.d.ts │ │ │ └── App.js │ │ └── runtime/ │ │ ├── package.json │ │ ├── runtime.d.ts │ │ └── runtime.js │ ├── go.mod │ ├── go.sum │ ├── main.go │ ├── myfunc/ │ │ ├── myfunc.go │ │ └── myfunc_test.go │ ├── mymodel/ │ │ ├── Version.go │ │ ├── git项目操作.go │ │ ├── git项目操作_test.go │ │ ├── 文件监视模块.go │ │ ├── 文件监视模块_test.go │ │ ├── 自动更新模块.go │ │ └── 自动更新模块_test.go │ ├── ssh_nginx/ │ │ ├── Caddyfile │ │ ├── default.conf │ │ └── docker-compose.yml │ └── wails.json ├── LICENSE ├── QtEsayDesigner IDE插件.jar ├── README.md ├── README.zh-Hans.md ├── script/ │ └── main.go └── tool/ └── 一键环境配置.e