8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53fcafc commit 628e834Copy full SHA for 628e834
themes/vue/source/js/common.js
@@ -329,6 +329,10 @@
329
versionSelect && versionSelect.addEventListener('change', function (e) {
330
var version = e.target.value
331
var section = window.location.pathname.match(/\/v\d\/(\w+?)\//)[1]
332
+ if (version === 'v3') {
333
+ window.location.assign('https://v3.ja.vuejs.org/' + section + '/')
334
+ return
335
+ }
336
if (version === 'SELF') { return }
337
window.location.assign('https://' + (version ? version + '-' : '') + 'jp.vuejs.org/' + section + '/')
338
})
0 commit comments