2.2.4 • Published 8 years ago
electron-vue-debugger v2.2.4
🔮 Debugger Component

Install
npm install electron-vue-debugger -save-devcomponent 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 ⌃ + dtoggle the debugger panel
thats it, enjoy...