The aim of electron-vue is to remove the need of manually setting up electron apps using vue. electron-vue takes advantage of vue-cli for scaffolding, webpack with vue-loader, electron-packager or electron-builder, and some of the most used plugins like vue-router, vuex, and so much more.
Questions tagged [electron-vue]
84 questions
1
vote
0 answers
Nightmarejs with Electron Proxies
I've been trying to use nightmarejs in my electron-vue project. In dev everything worked fine, but after building, I would always get an error message. Luckily, I found this package which is a replica of nightmare but works in an electron-vue build:…

Tom Lamensia
- 43
- 3
1
vote
2 answers
Mutation payload changes value by itself in vuex store mutation
I'm trying to build an Electron app with VueJS using the electron-vue boilerplate. I have a mutation which updates parts of the state based on the payload it receives.
However, somewhere between the action call and the mutation, the property…

user2307798
- 67
- 7
1
vote
2 answers
Vue.js with Axios use data from other method
I have a external api which returns a json of a user with some attributes like username. I want to use this username in my vue methods as a url parameter and defined the function getUser(). My problem is that the parameter keeps undefined
Here is my…

ilyricus
- 21
- 1
- 6
1
vote
0 answers
can't set host to node net.socket connect
I'm using electron-vue build an APP. I need create a tcp connection, and I use net.Socket().But i get a no response when I set HOST.
I need use the socket global, so I create a class like this:
import crc16ccitt from 'crc/crc16ccitt';
const net =…

starhu
- 11
- 1
1
vote
0 answers
Cannot set property of undefined when import promise in vue component
"vue-electron": "^1.0.6"
"electron": "4.2.4"
"webpack": "^4.15.1"
"vue": "^2.5.16"
In a vue component, I import a js file
...