https://github.com/dperrymorrow/electron-vue-debugger
component for debugging components vuex and more within an electron app
https://github.com/dperrymorrow/electron-vue-debugger
Last synced: 5 months ago
JSON representation
component for debugging components vuex and more within an electron app
- Host: GitHub
- URL: https://github.com/dperrymorrow/electron-vue-debugger
- Owner: dperrymorrow
- License: mit
- Created: 2017-04-20T23:35:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-06-07T21:33:32.000Z (about 7 years ago)
- Last Synced: 2025-02-22T08:48:01.510Z (over 1 year ago)
- Language: Vue
- Size: 84 KB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 🔮 Debugger Component

## Install
```
npm install electron-vue-debugger -save-dev
```
> component must be registered.
``` javascript
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.
```html
```
You will most likely only render this component in development so a conditional like the following will be warranted.
```html
```
> `Control ⌃ + d` toggle the debugger panel
thats it, enjoy...