Lines 42-48
export default {
Link Here
|
42 |
window.location.href = this.formatUrl(redirectParams); |
42 |
window.location.href = this.formatUrl(redirectParams); |
43 |
if (typeof redirectParams === "object") { |
43 |
if (typeof redirectParams === "object") { |
44 |
const url = this.handleQuery(redirectParams); |
44 |
const url = this.handleQuery(redirectParams); |
45 |
window.open(this.formatUrl(url), "_blank"); |
45 |
window.location.href = this.formatUrl(url); |
46 |
} |
46 |
} |
47 |
}, |
47 |
}, |
48 |
formatUrl(url) { |
48 |
formatUrl(url) { |
49 |
- |
|
|