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 012f256 commit 14ea277Copy full SHA for 14ea277
web/src/view/layout/aside/index.vue
@@ -46,7 +46,11 @@ export default {
46
}
47
});
48
if (index === this.$route.name) return;
49
- this.$router.push({ name: index, query, params });
+ if (index.indexOf("http://") > -1 || index.indexOf("https://") > -1) {
50
+ window.open(index);
51
+ } else {
52
+ this.$router.push({ name: index, query, params });
53
+ }
54
55
},
56
computed: {
0 commit comments