A Vue inspector plugin that works with any bundler (Vite, Webpack, etc.) by injecting a component overlay triggered by pressing 'k'. Version 1.0.0. Unlike vite-plugin-vue-inspector which is Vite-only, this package uses a Vue plugin approach for universal compatibility. Best for debugging Vue apps in development mode, indicated by page title containing '[dev]'.
npm install vue-inspector-agnosticVerified import paths — ran on the pinned version, not inferred.
Demonstrates basic setup: import the default inspector, install it as a Vue plugin, and mount the app. Press 'k' to toggle the inspector.
Ensure your app sets document.title = '[dev] Your App' in development mode.
Avoid using 'k' for other actions in your app, or fork the package.
Accept default behavior or fork the package for custom needs.
Run 'npm install vue-inspector-agnostic' and ensure it's in package.json.
Use 'import inspector from 'vue-inspector-agnostic'' instead of named import or require without .default.
Ensure you call 'app.use(inspector)' after creating the app and before mounting.