mixins/link support absolute URL
This commit is contained in:
parent
f89e85776a
commit
5c604d5266
2 changed files with 7 additions and 1 deletions
|
@ -309,6 +309,8 @@
|
||||||
</ButtonGroup>
|
</ButtonGroup>
|
||||||
</div>
|
</div>
|
||||||
<Divider></Divider>
|
<Divider></Divider>
|
||||||
|
<Button to="http://baidu.com" replace>http跳转</Button>
|
||||||
|
<Button to="https://iviewui.com" replace>https跳转</Button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|
|
@ -55,7 +55,11 @@ export default {
|
||||||
window.open(to);
|
window.open(to);
|
||||||
} else {
|
} else {
|
||||||
if (router) {
|
if (router) {
|
||||||
this.replace ? this.$router.replace(this.to, () => {}) : this.$router.push(this.to, () => {});
|
if (this.to.includes('//')) {
|
||||||
|
window.location.href = this.to;
|
||||||
|
} else {
|
||||||
|
this.replace ? this.$router.replace(this.to, () => {}) : this.$router.push(this.to, () => {});
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
window.location.href = this.to;
|
window.location.href = this.to;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue