24 lines
534 B
Vue
24 lines
534 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script>
|
|
import router from '@/router';
|
|
|
|
export default {
|
|
name: 'BlankView',
|
|
created() {
|
|
console.log('blank...');
|
|
console.log(window.performance.navigation.type);
|
|
//处理css样式污染问题
|
|
if (window.performance.navigation.type == window.performance.navigation.TYPE_RELOAD) {
|
|
router.push('/home');
|
|
} else {
|
|
console.log('router go ...');
|
|
router.go(0);
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style> |