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
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,19 +11,19 @@
11
11
::: code-group
12
12
13
13
```sh [npm]
14
-
$ npm add -g @vue/devtools-next
14
+
$ npm add -g @vue/devtools
15
15
```
16
16
17
17
```sh [pnpm]
18
-
$ pnpm add -g @vue/devtools-next
18
+
$ pnpm add -g @vue/devtools
19
19
```
20
20
21
21
```sh [yarn]
22
-
$ yarn global add @vue/devtools-next
22
+
$ yarn global add @vue/devtools
23
23
```
24
24
25
25
```sh [bun]
26
-
$ bun add -g @vue/devtools-next
26
+
$ bun add -g @vue/devtools
27
27
```
28
28
29
29
:::
@@ -33,19 +33,19 @@ $ bun add -g @vue/devtools-next
33
33
::: code-group
34
34
35
35
```sh [npm]
36
-
$ npm add -D @vue/devtools-next
36
+
$ npm add -D @vue/devtools
37
37
```
38
38
39
39
```sh [pnpm]
40
-
$ pnpm add -D @vue/devtools-next
40
+
$ pnpm add -D @vue/devtools
41
41
```
42
42
43
43
```sh [yarn]
44
-
$ yarn add -D @vue/devtools-next
44
+
$ yarn add -D @vue/devtools
45
45
```
46
46
47
47
```sh [bun]
48
-
$ bun add -D @vue/devtools-next
48
+
$ bun add -D @vue/devtools
49
49
```
50
50
51
51
:::
@@ -98,7 +98,7 @@ You can also use the global `vue-devtools-next` to start the app, but you might
98
98
Then import it directly in your app:
99
99
100
100
```ts
101
-
import { devtools } from'@vue/devtools-next'
101
+
import { devtools } from'@vue/devtools'
102
102
```
103
103
104
104
:::tip Important
@@ -165,7 +165,7 @@ For that you can also use ngrok, as it automatically proxies https requests to h
165
165
Make sure that the page under `http://your-ip:8098` is returning a javascript coode on your device/simulator. If it doesn't - make sure to check your anti-virus or router/firewall settings. If it works - please follow the instructions, and connect to devtools using your IP. For example:
0 commit comments