File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
22 "name" : " @vingy/vuebugger" ,
3- "version" : " 0.2.0 " ,
3+ "version" : " 0.2.1 " ,
44 "description" : " Vue devtools plugin to debug anything." ,
55 "keywords" : [
66 " composable" ,
Original file line number Diff line number Diff line change 1- import type { Plugin } from 'vue'
1+ import type { App , Plugin } from 'vue'
22import { setUidGenerator } from './debug'
33import { setupComposableDevtools } from './devtools'
44import { PluginOptions } from './types'
55
66export { debug } from './debug'
77
8- const plugin : Plugin < PluginOptions > = {
9- install : ( app , options ) => {
8+ const plugin : Plugin < PluginOptions | undefined > = {
9+ install : ( app : App , options ?: PluginOptions ) => {
1010 if ( ! import . meta. env . DEV ) return
1111 if ( options ?. uidFn ) setUidGenerator ( options . uidFn )
1212 setupComposableDevtools ( app )
You can’t perform that action at this time.
0 commit comments