fix(cli): nav back in mobile mode (#5957)

This commit is contained in:
neverland 2020-03-31 07:28:05 +08:00 committed by GitHub
parent 75e832f05a
commit 4dc3c79090
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,11 @@ export default {
methods: {
onBack() {
history.back();
if (history.length > 1) {
history.back();
} else {
this.$router.replace('/');
}
},
},
};