This commit is contained in:
RickCole21 2020-08-20 16:01:19 +08:00
parent 15d2fab97b
commit 6bfc4cf98b
1 changed files with 8 additions and 1 deletions

View File

@ -135,9 +135,16 @@ export default class PlayGround extends React.Component {
const link = normalizeLink(to);
return router.isActive(link);
},
jumpTo: to => {
jumpTo: (to, action) => {
to = normalizeLink(to);
if (action && action.actionType === 'url') {
action.blank === false
? (window.location.href = to)
: window.open(to);
return;
}
if (/^https?:\/\//.test(to)) {
window.location.replace(to);
} else {