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

https://github.com/akryum/vue2-devtools-plugin-example


https://github.com/akryum/vue2-devtools-plugin-example

Last synced: 11 months ago
JSON representation

Awesome Lists containing this project

README

          

# Example Vue 2 plugin with devtools integration

Usage in app:

```js
import Vue from 'vue'
import App from './App.vue'
import MyAwesomePlugin from 'my-awesome-plugin'

Vue.use(MyAwesomePlugin)

new Vue({
render: h => h(App),
myPlugin: true,
}).$mount('#app')
```