An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# 🔮 Debugger Component

![demo](https://user-images.githubusercontent.com/64978/26994758-dc5db3dc-4d1d-11e7-93ce-57b481c3973a.png)

## 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...