iview/src/mixins/link.js

17 lines
372 B
JavaScript
Raw Normal View History

2018-06-20 17:09:11 +08:00
export default {
computed: {
linkUrl () {
}
},
methods: {
handleClick () {
const isRoute = this.$router;
if (isRoute) {
this.replace ? this.$router.replace(this.to) : this.$router.push(this.to);
} else {
window.location.href = this.to;
}
}
}
}