You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guide/standalone.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ $ bun add -D @vue/devtools
57
57
Once you installed the package globally, run:
58
58
59
59
```sh
60
-
vue-devtools-next
60
+
vue-devtools
61
61
```
62
62
63
63
Then add this code to the `<head>` section of your application HTML file:
@@ -88,11 +88,11 @@ Or if you want to debug your device remotely:
88
88
Once you installed the package as project dependency, run:
89
89
90
90
```sh
91
-
./node_modules/.bin/vue-devtools-next
91
+
./node_modules/.bin/vue-devtools
92
92
```
93
93
94
94
:::tip
95
-
You can also use the global `vue-devtools-next` to start the app, but you might want to check if the local version matches the global one in this scenario to avoid any incompatibilities.
95
+
You can also use the global `vue-devtools` to start the app, but you might want to check if the local version matches the global one in this scenario to avoid any incompatibilities.
96
96
:::
97
97
98
98
Then import it directly in your app:
@@ -123,7 +123,7 @@ if (process.env.NODE_ENV === 'development')
123
123
You can change it by setting environment variable before running it:
0 commit comments