Skip to content

Commit f0feff7

Browse files
authored
chore: update website link, migration tips (#596)
1 parent db26b4d commit f0feff7

File tree

13 files changed

+39
-18
lines changed

13 files changed

+39
-18
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
## Getting Started
1111

1212
- [Chrome Extension](https://chromewebstore.google.com/detail/vuejs-devtools-beta/ljjemllljcmogpfapbkkighbhhppjdbg)
13-
- [Install as Vite plugin](https://devtools-next.vuejs.org/guide/vite-plugin)
14-
- [Standalone App](https://devtools-next.vuejs.org/guide/standalone)
13+
- [Install as Vite plugin](https://devtools.vuejs.org/guide/vite-plugin)
14+
- [Standalone App](https://devtools.vuejs.org/guide/standalone)
1515

16-
For more details, check out the documentation at [devtools-next.vuejs.org](https://devtools-next.vuejs.org).
16+
For more details, check out the documentation at [devtools.vuejs.org](https://devtools.vuejs.org).
1717

1818
## Sponsors
1919

@@ -25,7 +25,7 @@ For more details, check out the documentation at [devtools-next.vuejs.org](https
2525

2626
## Contribution
2727

28-
Please make sure to read the [Contributing Guide](https://devtools-next.vuejs.org/help/contributing) before making a pull request.
28+
Please make sure to read the [Contributing Guide](https://devtools.vuejs.org/help/contributing) before making a pull request.
2929

3030
Thank you to all the people who already contributed to Vue DevTools!
3131

docs/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ There are multiple options to add this tool to your projects, ensuring that it f
99
## Notice
1010

1111
:::warning Compatibility Note
12-
The DevTools is only compatible with Vue 3. If you are still using Vue2, use [vue-devtools](https://devtools.vuejs.org/) instead.
12+
The DevTools is only compatible with Vue 3. If you are still using Vue2, use [vue-devtools](https://devtools-v6.vuejs.org/) instead.
1313
:::
1414

1515
:::tip Recommendation

docs/plugins/api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Plugins API for easier DevTools integrations.
44

55
:::tip
66

7-
Since v7.3.0, we are fully compatible with the v6 plugin API. You can check out the [API documentation](https://devtools.vuejs.org/plugin/api-reference.html) here.
7+
Since v7.3.0, we are fully compatible with the v6 plugin API. You can check out the [API documentation](https://devtools-v6.vuejs.org/plugin/api-reference.html) here.
88
:::
99

1010
## Installation

packages/chrome-extension/popups/enabled.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<a href="https://devtools-next.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
16+
<a href="https://devtools.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
1717
</p>
1818
</div>
1919
</div>

packages/chrome-extension/popups/enabled.nuxt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<a href="https://devtools-next.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
16+
<a href="https://devtools.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
1717
</p>
1818
</div>
1919
</div>

packages/chrome-extension/popups/enabled.vitepress.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<a href="https://devtools-next.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
16+
<a href="https://devtools.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
1717
</p>
1818
</div>
1919
</div>

packages/client/src/pages/index.vue

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<script setup lang="ts">
22
import { VueButton } from '@vue/devtools-ui'
33
4+
const hostEnv = useHostEnv()
45
const router = useRouter()
56
const clientState = devtoolsClientState
67
@@ -11,7 +12,27 @@ function visit() {
1112
</script>
1213

1314
<template>
14-
<div flex="~ col gap3" relative h-screen w-full items-center justify-center text-center>
15+
<div v-if="hostEnv === 'chrome'" flex="~ col gap3" relative h-screen w-full items-center justify-center text-center>
16+
<p my2 text-3em text-primary-600 font-bold font-stylish>
17+
👋 Welcome to the new Vue Devtools v7!
18+
</p>
19+
<p max-w-190 text-lg>
20+
This new version supports only Vue 3. <span op50>
21+
(Learn more at
22+
<a href="https://devtools.vuejs.org/" target="_blank" rel="noopener noreferrer" n="primary">
23+
devtools.vuejs.org
24+
</a>)
25+
</span>
26+
<br>
27+
The legacy version that supports both Vue 2 and Vue 3 has been moved to <a href="https://chromewebstore.google.com/detail/vuejs-devtools/iaajmlceplecbljialhhkmedjlpdblhp" target="_blank" class="op50">here</a>.
28+
</p>
29+
30+
<VueButton type="primary" @click="visit">
31+
<span>Get Started</span>
32+
</VueButton>
33+
</div>
34+
<!-- -->
35+
<div v-else flex="~ col gap3" relative h-screen w-full items-center justify-center text-center>
1536
<p my2 text-3em text-primary-600 font-bold font-stylish>
1637
👋 Hi there, welcome to Vue DevTools!
1738
</p>
@@ -21,8 +42,8 @@ function visit() {
2142
</p>
2243
<p mb6 op50>
2344
Learn more at
24-
<a href="https://devtools-next.vuejs.org/" target="_blank" rel="noopener noreferrer" n="primary">
25-
devtools-next.vuejs.org
45+
<a href="https://devtools.vuejs.org/" target="_blank" rel="noopener noreferrer" n="primary">
46+
devtools.vuejs.org
2647
</a>
2748
</p>
2849

packages/devtools-api/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
55
## Getting Started
66

7-
Please follow the documentation at [devtools-next.vuejs.org](https://devtools-next.vuejs.org/plugins/api).
7+
Please follow the documentation at [devtools.vuejs.org](https://devtools.vuejs.org/plugins/api).

packages/devtools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
55
## Getting Started
66

7-
Please follow the documentation at [devtools-next.vuejs.org](https://devtools-next.vuejs.org/guide/standalone).
7+
Please follow the documentation at [devtools.vuejs.org](https://devtools.vuejs.org/guide/standalone).

packages/firefox-extension/popups/enabled.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<a href="https://devtools-next.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
16+
<a href="https://devtools.vuejs.org/help/troubleshooting" target="_blank">Troubleshooting</a>
1717
</p>
1818
</div>
1919
</div>

0 commit comments

Comments
 (0)