https://github.com/akryum/vue2-devtools-plugin-example
https://github.com/akryum/vue2-devtools-plugin-example
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/akryum/vue2-devtools-plugin-example
- Owner: Akryum
- Created: 2022-02-06T14:19:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-06T14:20:00.000Z (over 4 years ago)
- Last Synced: 2025-02-28T18:57:13.318Z (over 1 year ago)
- Language: TypeScript
- Size: 21.5 KB
- Stars: 8
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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')
```