A plugin implements automatically open corresponding file in vscode when click element in browser.
Note: If you are using Vue 3 and Vite, please check out vite-plugin-vue-inspector-plus.
| vue 2 | vue 3 | |
|---|---|---|
| vite | ✅ | 🟡 |
| webpack 4 | ✅ | 🟡 |
| webpack 5 | ✅ | 🟡 |
🟡: There may be problems in high versions.
npm install --save-dev vue-inspector-plugin- Vite
// vite.config.js
import { defineConfig } from 'vite';
import VueInspector from 'vue-inspector-plugin/vite';
import Vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [Vue(), VueInspector()],
});- Webpack
// vue.config.js
const VueInspector = require('vue-inspector-plugin/webpack').default;
module.exports = {
chainWebpack(config) {
config.plugin('VueInspector').use(VueInspector());
},
};- rootDir: The directory where
srcresides, defaults toprocess.cwd(). - modifierKey: The modifier key that should be pressed at the same time when clicking, defaults to
ctrl.
