├── .editorconfig ├── .gitignore ├── README.md ├── meta.js ├── package.json └── template ├── .babelrc ├── .editorconfig ├── .gitignore ├── .nwjs-vue ├── dev-client.js ├── dev-runner.js ├── prod-builder.js ├── utils.js ├── webpack.bg.config.js └── webpack.main.config.js ├── README.md ├── package.json ├── src ├── bg │ └── bg.js └── main │ ├── App.vue │ ├── assets │ └── images │ │ └── logo.png │ ├── components │ └── LandingPage.vue │ ├── index.ejs │ ├── main.js │ ├── router │ └── index.js │ └── store │ ├── index.js │ └── modules │ ├── Counter.js │ └── index.js └── static └── .gitkeep /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/README.md -------------------------------------------------------------------------------- /meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/meta.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/package.json -------------------------------------------------------------------------------- /template/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.babelrc -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.gitignore -------------------------------------------------------------------------------- /template/.nwjs-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.nwjs-vue/dev-client.js -------------------------------------------------------------------------------- /template/.nwjs-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.nwjs-vue/dev-runner.js -------------------------------------------------------------------------------- /template/.nwjs-vue/prod-builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.nwjs-vue/prod-builder.js -------------------------------------------------------------------------------- /template/.nwjs-vue/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.nwjs-vue/utils.js -------------------------------------------------------------------------------- /template/.nwjs-vue/webpack.bg.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.nwjs-vue/webpack.bg.config.js -------------------------------------------------------------------------------- /template/.nwjs-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/.nwjs-vue/webpack.main.config.js -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/README.md -------------------------------------------------------------------------------- /template/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/package.json -------------------------------------------------------------------------------- /template/src/bg/bg.js: -------------------------------------------------------------------------------- 1 | console.log('We are at bg-script!') 2 | -------------------------------------------------------------------------------- /template/src/main/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/App.vue -------------------------------------------------------------------------------- /template/src/main/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/assets/images/logo.png -------------------------------------------------------------------------------- /template/src/main/components/LandingPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/components/LandingPage.vue -------------------------------------------------------------------------------- /template/src/main/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/index.ejs -------------------------------------------------------------------------------- /template/src/main/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/main.js -------------------------------------------------------------------------------- /template/src/main/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/router/index.js -------------------------------------------------------------------------------- /template/src/main/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/store/index.js -------------------------------------------------------------------------------- /template/src/main/store/modules/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/store/modules/Counter.js -------------------------------------------------------------------------------- /template/src/main/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elegantweb/nwjs-vue/HEAD/template/src/main/store/modules/index.js -------------------------------------------------------------------------------- /template/static/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------