nw-vue-devtools-5
v5.0.0
Published
Vue DevTools (v5) for NW.js
Downloads
110
Maintainers
Readme
nw-vue-devtools-5
Vue DevTools (v5) for NW.js
This is a, hard coded, extracted copy of the last release of Version 5 of the Vue DevTools Chrome Extension. It is modified to work with NW.js. Version 6, at the time of writing is buggy. So I'm publishing this as an easy way to get to version 5. If you are in the future you are probably better off using nw-vue-devtools-prebuilt (assuming the bugs in Vue DevTools get fixed).
Instructions
npm install nw-vue-devtools-5
- Add this to your
package.json
of your NW.js app:"chromium-args": "--load-extension='./node_modules/nw-vue-devtools-5/extension'"
- Vue.js must be in use in your app, and cannot be minified (
vue.js
notvue.min.js
).
You may need to add Vue.config.devtools = true;
to your main.js
file.
If you are using nwjs-builder-phoenix
then add in "chromium-args"
to your package.json
build.strippedProperties
array (more info).