├── .all-contributorsrc ├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github ├── FUNDING.yml └── main.workflow ├── .gitignore ├── .prettierrc ├── .travis.yml ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .whitesource ├── LICENSE ├── README.md ├── _icons ├── 128pxblack.png ├── 128pxblack.svg ├── 128pxblue.png ├── 128pxblue.svg ├── 128pxwhite.png ├── 128pxwhite.svg ├── 256pxblack.png ├── 256pxblack.svg ├── 256pxblue.png ├── 256pxblue.svg ├── 256pxwhite.png ├── 256pxwhite.svg ├── 30pxblack.png ├── 30pxblack.svg ├── 30pxblue.png ├── 30pxblue.svg ├── 30pxwhite.png ├── 30pxwhite.svg ├── 512pxblack.png ├── 512pxblack.svg ├── 512pxblue.png ├── 512pxblue.svg ├── 512pxwhite.png ├── 512pxwhite.svg ├── 60pxblack.png ├── 60pxblack.svg ├── 60pxblue.png ├── 60pxblue.svg ├── 60pxwhite.png ├── 60pxwhite.svg ├── 90pxblack.png ├── 90pxblack.svg ├── 90pxblue.png ├── 90pxblue.svg ├── 90pxwhite.png ├── 90pxwhite.svg ├── add ├── icon.icns ├── icon.ico ├── icon.png ├── logotype1black.png ├── logotype1black.svg ├── logotype1blue.png ├── logotype1blue.svg ├── logotype1white.png ├── logotype1white.svg ├── logotype2black.png ├── logotype2black.svg ├── logotype2blue.png ├── logotype2blue.svg ├── logotype2white.png └── logotype2white.svg ├── _scripts ├── build.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js ├── webpack.web.config.js └── webpack.workers.config.js ├── appveyor.yml ├── package.json ├── screenshot.png ├── src ├── data │ └── .gitkeep ├── index.ejs ├── main │ └── index.js ├── renderer │ ├── App.vue │ ├── assets │ │ ├── logo.png │ │ └── style │ │ │ ├── animations.scss │ │ │ └── main.scss │ ├── components │ │ └── SystemInformation.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── store │ │ ├── index.js │ │ └── modules │ │ │ └── index.js │ └── views │ │ ├── About.vue │ │ ├── Help.vue │ │ └── Home.vue ├── utilities │ └── workerSample.ts └── vue-shims.d.ts ├── static └── .gitkeep └── tsconfig.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/main.workflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.github/main.workflow -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.whitesource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/.whitesource -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/README.md -------------------------------------------------------------------------------- /_icons/128pxblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/128pxblack.png -------------------------------------------------------------------------------- /_icons/128pxblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/128pxblack.svg -------------------------------------------------------------------------------- /_icons/128pxblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/128pxblue.png -------------------------------------------------------------------------------- /_icons/128pxblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/128pxblue.svg -------------------------------------------------------------------------------- /_icons/128pxwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/128pxwhite.png -------------------------------------------------------------------------------- /_icons/128pxwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/128pxwhite.svg -------------------------------------------------------------------------------- /_icons/256pxblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/256pxblack.png -------------------------------------------------------------------------------- /_icons/256pxblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/256pxblack.svg -------------------------------------------------------------------------------- /_icons/256pxblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/256pxblue.png -------------------------------------------------------------------------------- /_icons/256pxblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/256pxblue.svg -------------------------------------------------------------------------------- /_icons/256pxwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/256pxwhite.png -------------------------------------------------------------------------------- /_icons/256pxwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/256pxwhite.svg -------------------------------------------------------------------------------- /_icons/30pxblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/30pxblack.png -------------------------------------------------------------------------------- /_icons/30pxblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/30pxblack.svg -------------------------------------------------------------------------------- /_icons/30pxblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/30pxblue.png -------------------------------------------------------------------------------- /_icons/30pxblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/30pxblue.svg -------------------------------------------------------------------------------- /_icons/30pxwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/30pxwhite.png -------------------------------------------------------------------------------- /_icons/30pxwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/30pxwhite.svg -------------------------------------------------------------------------------- /_icons/512pxblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/512pxblack.png -------------------------------------------------------------------------------- /_icons/512pxblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/512pxblack.svg -------------------------------------------------------------------------------- /_icons/512pxblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/512pxblue.png -------------------------------------------------------------------------------- /_icons/512pxblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/512pxblue.svg -------------------------------------------------------------------------------- /_icons/512pxwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/512pxwhite.png -------------------------------------------------------------------------------- /_icons/512pxwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/512pxwhite.svg -------------------------------------------------------------------------------- /_icons/60pxblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/60pxblack.png -------------------------------------------------------------------------------- /_icons/60pxblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/60pxblack.svg -------------------------------------------------------------------------------- /_icons/60pxblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/60pxblue.png -------------------------------------------------------------------------------- /_icons/60pxblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/60pxblue.svg -------------------------------------------------------------------------------- /_icons/60pxwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/60pxwhite.png -------------------------------------------------------------------------------- /_icons/60pxwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/60pxwhite.svg -------------------------------------------------------------------------------- /_icons/90pxblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/90pxblack.png -------------------------------------------------------------------------------- /_icons/90pxblack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/90pxblack.svg -------------------------------------------------------------------------------- /_icons/90pxblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/90pxblue.png -------------------------------------------------------------------------------- /_icons/90pxblue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/90pxblue.svg -------------------------------------------------------------------------------- /_icons/90pxwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/90pxwhite.png -------------------------------------------------------------------------------- /_icons/90pxwhite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/90pxwhite.svg -------------------------------------------------------------------------------- /_icons/add: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_icons/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/icon.icns -------------------------------------------------------------------------------- /_icons/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/icon.ico -------------------------------------------------------------------------------- /_icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/icon.png -------------------------------------------------------------------------------- /_icons/logotype1black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype1black.png -------------------------------------------------------------------------------- /_icons/logotype1black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype1black.svg -------------------------------------------------------------------------------- /_icons/logotype1blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype1blue.png -------------------------------------------------------------------------------- /_icons/logotype1blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype1blue.svg -------------------------------------------------------------------------------- /_icons/logotype1white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype1white.png -------------------------------------------------------------------------------- /_icons/logotype1white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype1white.svg -------------------------------------------------------------------------------- /_icons/logotype2black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype2black.png -------------------------------------------------------------------------------- /_icons/logotype2black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype2black.svg -------------------------------------------------------------------------------- /_icons/logotype2blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype2blue.png -------------------------------------------------------------------------------- /_icons/logotype2blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype2blue.svg -------------------------------------------------------------------------------- /_icons/logotype2white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype2white.png -------------------------------------------------------------------------------- /_icons/logotype2white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_icons/logotype2white.svg -------------------------------------------------------------------------------- /_scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_scripts/build.js -------------------------------------------------------------------------------- /_scripts/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_scripts/dev-runner.js -------------------------------------------------------------------------------- /_scripts/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_scripts/webpack.main.config.js -------------------------------------------------------------------------------- /_scripts/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_scripts/webpack.renderer.config.js -------------------------------------------------------------------------------- /_scripts/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_scripts/webpack.web.config.js -------------------------------------------------------------------------------- /_scripts/webpack.workers.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/_scripts/webpack.workers.config.js -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/appveyor.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/screenshot.png -------------------------------------------------------------------------------- /src/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /src/renderer/assets/style/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/assets/style/animations.scss -------------------------------------------------------------------------------- /src/renderer/assets/style/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/assets/style/main.scss -------------------------------------------------------------------------------- /src/renderer/components/SystemInformation.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/components/SystemInformation.vue -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /src/renderer/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/views/About.vue -------------------------------------------------------------------------------- /src/renderer/views/Help.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/views/Help.vue -------------------------------------------------------------------------------- /src/renderer/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/renderer/views/Home.vue -------------------------------------------------------------------------------- /src/utilities/workerSample.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /src/vue-shims.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/src/vue-shims.d.ts -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mubaidr/vue-electron-template/HEAD/tsconfig.json --------------------------------------------------------------------------------