提交 9bac9fb2 编写于 作者: Mr.奇淼('s avatar Mr.奇淼(

增加侧边栏配置其他网站功能(name以:http://开头或者https://开头即可)

上级 b4346600
......@@ -46,7 +46,11 @@ export default {
}
});
if (index === this.$route.name) return;
this.$router.push({ name: index, query, params });
if (index.indexOf("http://") > -1 || index.indexOf("https://") > -1) {
window.open(index);
} else {
this.$router.push({ name: index, query, params });
}
}
},
computed: {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册