Skip to content

Commit 0c3f526

Browse files
authored
fix: Correct vue version docs url on vue link (#12)
1 parent f920e9d commit 0c3f526

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/popup/App.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,8 @@ export default {
282282
vueDocsURL () {
283283
return (
284284
(this.showcase.vueVersion.startsWith('1') && 'https://v1.vuejs.org') ||
285-
(this.showcase.vueVersion.startsWith('2') && 'https://vuejs.org') ||
286-
(this.showcase.vueVersion.startsWith('3') && 'https://v3.vuejs.org')
285+
(this.showcase.vueVersion.startsWith('2') && 'https://v2.vuejs.org') ||
286+
(this.showcase.vueVersion.startsWith('3') && 'https://vuejs.org')
287287
)
288288
}
289289
},

0 commit comments

Comments
 (0)