Skip to content

Commit 786e873

Browse files
docs: fix devtools-v6 documentation links
1 parent dd2ab5d commit 786e873

File tree

11 files changed

+17
-17
lines changed

11 files changed

+17
-17
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ body:
99
This form is only for submitting bug reports. If you have a usage question
1010
or are unsure if this is really a bug, make sure to:
1111
12-
- Read the [docs](https://devtools.vuejs.org/)
13-
- Read the [FAQ](https://devtools.vuejs.org/guide/faq.html)
12+
- Read the [docs](https://devtools-v6.vuejs.org/)
13+
- Read the [FAQ](https://devtools-v6.vuejs.org/guide/faq.html)
1414
- Ask on [GitHub Discussions](https://github.com/vuejs/devtools/discussions)
1515
- Ask on [Discord Chat](https://chat.vuejs.org/)
1616

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: I have a performance issue
4-
url: https://devtools.vuejs.org/guide/devtools-perf.html
4+
url: https://devtools-v6.vuejs.org/guide/devtools-perf.html
55
about: Follow the guide to share performance profiling data with us!
66
- name: Questions & Discussions
77
url: https://github.com/vuejs/devtools/discussions

.github/ISSUE_TEMPLATE/feature_request.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ body:
1010
This form is only for submitting feature requests. If you have a usage question
1111
or are unsure if this is really a bug, make sure to:
1212
13-
- Read the [docs](https://devtools.vuejs.org/)
14-
- Read the [FAQ](https://devtools.vuejs.org/guide/faq.html)
13+
- Read the [docs](https://devtools-v6.vuejs.org/)
14+
- Read the [FAQ](https://devtools-v6.vuejs.org/guide/faq.html)
1515
- Ask on [GitHub Discussions](https://github.com/vuejs/devtools/discussions)
1616
- Ask on [Discord Chat](https://chat.vuejs.org/)
1717

.github/PULL_REQUEST_TEMPLATE.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
### Before submitting the PR, please make sure you do the following
2121

22-
- [ ] Read the [Contributing Guidelines](https://devtools.vuejs.org/guide/contributing.html).
23-
- [ ] Read the [Pull Request Guidelines](https://devtools.vuejs.org/guide/contributing.html#pull-request-guidelines) and follow the [Commit Convention](https://github.com/vuejs/devtools/blob/main/.github/commit-convention.md).
22+
- [ ] Read the [Contributing Guidelines](https://devtools-v6.vuejs.org/guide/contributing.html).
23+
- [ ] Read the [Pull Request Guidelines](https://devtools-v6.vuejs.org/guide/contributing.html#pull-request-guidelines) and follow the [Commit Convention](https://github.com/vuejs/devtools/blob/main/.github/commit-convention.md).
2424
- [ ] Check that there isn't already a PR that solves the problem the same way to avoid creating a duplicate.
2525
- [ ] Provide a description in this PR that addresses **what** the PR is solving, or reference the issue that it solves (e.g. `fixes #123`).
2626
<!-- @TODO tests - [ ] Ideally, include relevant tests that fail without this PR but pass with it. -->

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ We have a brand new version of Devtools being developed at [vuejs/devtools-next]
88

99
![screenshot](./media/screenshot-shadow.png)
1010

11-
[Documentation](https://devtools.vuejs.org/) | [Install the extension](https://devtools.vuejs.org/guide/installation.html)
11+
[Documentation](https://devtools-v6.vuejs.org/) | [Install the extension](https://devtools-v6.vuejs.org/guide/installation.html)
1212

1313
## Monorepo
1414

@@ -29,7 +29,7 @@ We have a brand new version of Devtools being developed at [vuejs/devtools-next]
2929

3030
## Contributing
3131

32-
See the [Contributing guide](https://devtools.vuejs.org/guide/contributing.html).
32+
See the [Contributing guide](https://devtools-v6.vuejs.org/guide/contributing.html).
3333

3434
## License
3535

packages/app-frontend/src/features/header/AppHeader.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ export default defineComponent({
219219
<div class="border-t border-gray-200 dark:border-gray-700 my-1" />
220220

221221
<VueDropdownButton
222-
href="https://devtools.vuejs.org"
222+
href="https://devtools-v6.vuejs.org"
223223
target="_blank"
224224
icon-left="description"
225225
icon-right="open_in_new"

packages/app-frontend/src/features/plugin/PluginHome.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default defineComponent({
3232
</div>
3333

3434
<VueButton
35-
href="https://devtools.vuejs.org/plugin/plugins-guide.html"
35+
href="https://devtools-v6.vuejs.org/plugin/plugins-guide.html"
3636
target="_blank"
3737
class="primary"
3838
>

packages/app-frontend/src/features/welcome/WelcomeSlideshow.vue

+3-3
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ export default defineComponent({
102102
<template v-if="step === 5">
103103
<p>
104104
Any Vue plugin and library can now integrate with the devtools via its <a
105-
href="https://devtools.vuejs.org/plugin/plugins-guide.html"
105+
href="https://devtools-v6.vuejs.org/plugin/plugins-guide.html"
106106
target="_blank"
107107
>Plugin API</a>.
108108
</p>
@@ -144,7 +144,7 @@ export default defineComponent({
144144
<template v-if="step === 8">
145145
<p>
146146
Using the <a
147-
href="https://devtools.vuejs.org/plugin/plugins-guide.html"
147+
href="https://devtools-v6.vuejs.org/plugin/plugins-guide.html"
148148
target="_blank"
149149
>Devtools Plugin API</a>, third-party libraries can also add layers and events to the Timeline.
150150
</p>
@@ -184,7 +184,7 @@ export default defineComponent({
184184

185185
<p>
186186
In case something doesn't work with your project, you can use the <a
187-
href="https://devtools.vuejs.org/guide/installation.html#legacy"
187+
href="https://devtools-v6.vuejs.org/guide/installation.html#legacy"
188188
target="_blank"
189189
>Legacy version</a> and <a
190190
href="https://github.com/vuejs/devtools/issues/new/choose"

packages/shared-utils/src/util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -803,7 +803,7 @@ export function openInEditor(file) {
803803
} else {
804804
console.log('%c' + msg, 'color:red')
805805
}
806-
console.log('Check the setup of your project, see https://devtools.vuejs.org/guide/open-in-editor.html')
806+
console.log('Check the setup of your project, see https://devtools-v6.vuejs.org/guide/open-in-editor.html')
807807
}
808808
})`
809809
if (isChrome) {

packages/shell-chrome/popups/enabled.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<a href="https://devtools.vuejs.org/guide/faq.html#the-vue-devtools-don-t-show-up" target="_blank">Troubleshooting</a>
16+
<a href="https://devtools-v6.vuejs.org/guide/faq.html#the-vue-devtools-don-t-show-up" target="_blank">Troubleshooting</a>
1717
</p>
1818
</div>
1919
</div>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</p>
1414

1515
<p>
16-
<a href="https://devtools.vuejs.org/guide/faq.html#the-vue-devtools-don-t-show-up" target="_blank">Troubleshooting</a>
16+
<a href="https://devtools-v6.vuejs.org/guide/faq.html#the-vue-devtools-don-t-show-up" target="_blank">Troubleshooting</a>
1717
</p>
1818
</div>
1919
</div>

0 commit comments

Comments
 (0)