|
| 1 | +# Open component in editor |
| 2 | + |
| 3 | +When you select a component, you have the option to open the corresponding source file in your code editor. |
| 4 | + |
| 5 | +## Used in devtools vite plugin |
| 6 | + |
| 7 | +Vite plugin supports this feature out-of-the-box. |
| 8 | + |
| 9 | +The feature is based on the [vite-plugin-vue-inspector](https://github.com/webfansplz/vite-plugin-vue-inspector) plugin and requires configuration, which you can do by looking at the [configuration documentation](https://github.com/webfansplz/vite-plugin-vue-inspector?tab=readme-ov-file#--configuration-ide--editor). |
| 10 | + |
| 11 | +Starting from **v7.2.0**, you can specify the editor by `launchEditor` option: |
| 12 | + |
| 13 | +This is a list of [supported editors](https://github.com/yyx990803/launch-editor?tab=readme-ov-file#supported-editors), please ensure that the editor's environment variables are correctly configured beforehand. |
| 14 | + |
| 15 | +```ts |
| 16 | +import VueDevTools from 'vite-plugin-vue-devtools' |
| 17 | +export default defineConfig({ |
| 18 | + plugins: [ |
| 19 | + VueDevTools({ |
| 20 | + launchEditor: 'webstorm', |
| 21 | + }), |
| 22 | + Unocss(), |
| 23 | + ], |
| 24 | +}) |
| 25 | +``` |
| 26 | + |
| 27 | +## Used in devtools browser extension |
| 28 | + |
| 29 | +### Vite & Nuxt & Quasar CLI |
| 30 | + |
| 31 | +Vite & Nuxt & Quasar CLI supports this feature out-of-the-box. Make sure to be in debug mode. |
| 32 | + |
| 33 | +### Webpack |
| 34 | + |
| 35 | +In your Vue project, install the [launch-editor-middleware](https://github.com/yyx990803/launch-editor#middleware) package and modify your webpack configuration: |
| 36 | + |
| 37 | +1. Import the package: |
| 38 | + |
| 39 | +```ts |
| 40 | +const openInEditor = require('launch-editor-middleware') |
| 41 | +``` |
| 42 | + |
| 43 | +2. In the `devServer` option, register the `/__open-in-editor` HTTP route: |
| 44 | + |
| 45 | +```js |
| 46 | +devServer: { |
| 47 | + before: (app) => { |
| 48 | + app.use('/__open-in-editor', openInEditor()) |
| 49 | + } |
| 50 | +} |
| 51 | +``` |
| 52 | + |
| 53 | +3. The editor to launch is guessed. You can also specify the editor app with the editor option. See the [supported editors list.](https://github.com/yyx990803/launch-editor?tab=readme-ov-file#supported-editors) |
| 54 | + |
| 55 | +```js |
| 56 | +openInEditor('code') |
| 57 | +``` |
| 58 | + |
| 59 | +4. You can now click on the name of the component in the Component inspector pane (if the devtools knows about its file source, a tooltip will appear). |
| 60 | + |
| 61 | +### Node.js |
| 62 | + |
| 63 | +You can use the [launch-editor](https://github.com/yyx990803/launch-editor) package to setup an HTTP route with the `/__open-in-editor` path. It will receive file as an URL variable. |
| 64 | + |
| 65 | +### Customize request |
| 66 | + |
| 67 | +You can change the request host (default `/`) with the following code in your frontend app, e.g. |
| 68 | + |
| 69 | +```ts |
| 70 | +if (process.env.NODE_ENV !== 'production') { |
| 71 | + window.VUE_DEVTOOLS_CONFIG = { |
| 72 | + openInEditorHost: 'http://localhost:3000/' |
| 73 | + } |
| 74 | +} |
| 75 | +``` |
0 commit comments