├── .babelrc ├── .electron-vue ├── build.config.js ├── build.js ├── dev-client.js ├── dev-runner.js ├── webpack.main.config.js ├── webpack.renderer.config.js └── webpack.web.config.js ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── README.md ├── dist ├── electron │ └── .gitkeep └── web │ └── .gitkeep ├── package.json ├── src ├── datastore │ └── index.js ├── index.ejs ├── main │ ├── index.dev.js │ └── index.js └── renderer │ ├── App.vue │ ├── assets │ ├── .gitkeep │ ├── icon.ico │ ├── logo.png │ └── stylus │ │ ├── base.styl │ │ ├── index.styl │ │ ├── reset.styl │ │ └── variable.styl │ ├── core │ ├── index.js │ └── tools.js │ ├── init.js │ ├── main.js │ ├── router │ ├── home.js │ └── index.js │ ├── store │ ├── index.js │ └── modules │ │ ├── Counter.js │ │ └── index.js │ └── views │ ├── Home │ ├── chatroom.vue │ ├── image │ │ └── marisa.jpg │ ├── index.styl │ └── index.vue │ ├── _content.vue │ ├── _header.vue │ └── main.vue ├── static └── .gitkeep └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.babelrc -------------------------------------------------------------------------------- /.electron-vue/build.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/build.config.js -------------------------------------------------------------------------------- /.electron-vue/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/build.js -------------------------------------------------------------------------------- /.electron-vue/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/dev-client.js -------------------------------------------------------------------------------- /.electron-vue/dev-runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/dev-runner.js -------------------------------------------------------------------------------- /.electron-vue/webpack.main.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/webpack.main.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.renderer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/webpack.renderer.config.js -------------------------------------------------------------------------------- /.electron-vue/webpack.web.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.electron-vue/webpack.web.config.js -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/README.md -------------------------------------------------------------------------------- /dist/electron/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/web/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/package.json -------------------------------------------------------------------------------- /src/datastore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/datastore/index.js -------------------------------------------------------------------------------- /src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/index.ejs -------------------------------------------------------------------------------- /src/main/index.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/main/index.dev.js -------------------------------------------------------------------------------- /src/main/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/main/index.js -------------------------------------------------------------------------------- /src/renderer/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/App.vue -------------------------------------------------------------------------------- /src/renderer/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/renderer/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/assets/icon.ico -------------------------------------------------------------------------------- /src/renderer/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/assets/logo.png -------------------------------------------------------------------------------- /src/renderer/assets/stylus/base.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/assets/stylus/base.styl -------------------------------------------------------------------------------- /src/renderer/assets/stylus/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/assets/stylus/index.styl -------------------------------------------------------------------------------- /src/renderer/assets/stylus/reset.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/assets/stylus/reset.styl -------------------------------------------------------------------------------- /src/renderer/assets/stylus/variable.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/assets/stylus/variable.styl -------------------------------------------------------------------------------- /src/renderer/core/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/core/index.js -------------------------------------------------------------------------------- /src/renderer/core/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/core/tools.js -------------------------------------------------------------------------------- /src/renderer/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/init.js -------------------------------------------------------------------------------- /src/renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/main.js -------------------------------------------------------------------------------- /src/renderer/router/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/router/home.js -------------------------------------------------------------------------------- /src/renderer/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/router/index.js -------------------------------------------------------------------------------- /src/renderer/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/store/index.js -------------------------------------------------------------------------------- /src/renderer/store/modules/Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/store/modules/Counter.js -------------------------------------------------------------------------------- /src/renderer/store/modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/store/modules/index.js -------------------------------------------------------------------------------- /src/renderer/views/Home/chatroom.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/Home/chatroom.vue -------------------------------------------------------------------------------- /src/renderer/views/Home/image/marisa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/Home/image/marisa.jpg -------------------------------------------------------------------------------- /src/renderer/views/Home/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/Home/index.styl -------------------------------------------------------------------------------- /src/renderer/views/Home/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/Home/index.vue -------------------------------------------------------------------------------- /src/renderer/views/_content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/_content.vue -------------------------------------------------------------------------------- /src/renderer/views/_header.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/_header.vue -------------------------------------------------------------------------------- /src/renderer/views/main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/src/renderer/views/main.vue -------------------------------------------------------------------------------- /static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TohoOutsiders/electron-marisa/HEAD/yarn.lock --------------------------------------------------------------------------------