vue-electron | js quick start boilerplate with vue-cli scaffolding | Command Line Interface library
kandi X-RAY | vue-electron Summary
kandi X-RAY | vue-electron Summary
vue-electron keeps core dependency modules up to date.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Spawn a child process
vue-electron Key Features
vue-electron Examples and Code Snippets
Community Discussions
Trending Discussions on vue-electron
QUESTION
I'm trying to include a VLC video playing in my Electron app, which is possible through WebChimera.js. This package is distributed a bit weirdly (to me at least), to use it you need to require wcjs-prebuilt, specify some settings in package.json and configure Webpack to allow importing .node files as explained in this Wiki page for WebChimera.js.
However I believe this Wiki page is outdated, as loaders isn't a valid key anymore in a Webpack config. I'm not very experienced using Webpack so most of this is new to me. Also note that this Wiki explanation used a fork of node-loader, although this fork seems to be merged to the actual node-loader now (?).
I now use this Webpack config:
...ANSWER
Answered 2021-May-15 at 16:41I'm able to get vue electron building with wcjs-prebuilt
using a vue.config.js
like this. You will also need to set the VLC_PLUGIN_PATH
correctly or video won't play.
QUESTION
I cannot understand why my app cannot gets correct version data.
I already add version line in my package.json and I use vue-electron so I write my code in this update component.
...ANSWER
Answered 2021-Mar-29 at 03:04[Solved]
With this code, I solve the problem. but in dev mode it doesn't working but in production mode, it works well
QUESTION
I'm trying to use the bcrypt-package inside a vue-electron project, but there is an N-api version issue when I try to run it:
...ANSWER
Answered 2020-May-01 at 19:14So I found an answer to my own question in the end:
Electron comes bundled with its own version of nodejs apparently. Updating electron fixed my error.
QUESTION
I am trying to user puppeteer waitForXPath with an XPATH but I am getting following error
...ANSWER
Answered 2020-Apr-08 at 10:40I use chained promises as below:-
.then(page => page.waitFor(10000))
.then(() => _page)
.then(page => page.waitForXPath("//a[starts-with(./@class,'nav-link daterange') and contains(.,'Last 30 days')]"))
It works reliably and is very readable if you know XPath
QUESTION
I have installed the template from Electron-vue and I'm experiencing an issue with specific websites. These websites work on Chrome and Edge, yet, fail to completely load in webview
.
The following example is the whole setup of the view. The console of this show that Local Storage
, Session Storage
and IndexedDB
only have an entry for the website faselhd
but have no data inside. The Cookies
has an entry for the website with this type of data fcuid
ANSWER
Answered 2020-Mar-22 at 15:13You're using the default template electron-vue
which it uses a very old Electron 2.0.1
and that is Chrome 61, Node 8.9.3, V8 6.1.534.41
which is quite outdated to properly support Local Storage
and Session Storage
. You need to update Electron to a newer version.
To your existing project
- Update
electron
to8.1.x
by runningyarn add electron
(this will update electron to latest8.1.1
) - Open
.electron-vue/webpack.renderer.config.js
and at line115
changeHtmlWebpackPlugin
configuration object to this:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install vue-electron
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page