yoqw/web/cms/app/routes/index.js
2020-07-01 15:22:07 +08:00

22 lines
637 B
JavaScript

import Route from '@ember/routing/route';
export default Route.extend({
beforeModel() {
// this.transitionTo('app.list', 1);
},
actions: {
didTransition() {
if (window.localStorage) {
const prevURL = window.localStorage.getItem('prevURL');
if (prevURL) {
window.localStorage.removeItem('prevURL');
if (prevURL != window.location.href) {
window.location.href = prevURL;
}
}
}
return true; // Bubble the didTransition event
}
}
});