docs: keep current path when switching versions (#3927)

pull/3954/head
John 2021-04-12 12:33:10 +08:00 committed by GitHub
parent 96709926e8
commit c2449f568e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -64,6 +64,9 @@ export default {
this.value = val;
},
closeTopBanner() {},
changeVersion() {
location.href = `https://2x.antdv.com${this.$route.fullPath}`;
},
},
render() {
const name = this.name;
@ -179,7 +182,7 @@ export default {
</a-button>
<a-select size="small" defaultValue={packageInfo.version} class="version">
<a-select-option value={packageInfo.version}>{packageInfo.version}</a-select-option>
<a-select-option value="2.x" onClick={() => (location.href = 'https://2x.antdv.com')}>
<a-select-option value="2.x" onClick={this.changeVersion}>
2.x
</a-select-option>
</a-select>