Skip to content

component for debugging components vuex and more within an electron app

License

Notifications You must be signed in to change notification settings

dperrymorrow/electron-vue-debugger

Repository files navigation

🔮 Debugger Component

demo

Install

npm install electron-vue-debugger -save-dev

component must be registered.

Vue.use(require('electron-vue-debugger'));

Add the Component to your main app file.

keepAlive will determine if the debugger keeps state when open and closed, if false, the panel does not render when not opened. This can help with performance.

<debugger :keepAlive="true" :components="$children"></debugger>

You will most likely only render this component in development so a conditional like the following will be warranted.

<debugger v-if="CONFIG.debug" :keepAlive="true" :components="$children"></debugger>

Control ⌃ + d toggle the debugger panel

thats it, enjoy...

About

component for debugging components vuex and more within an electron app

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published