hash变化不会刷新页面,监听hash变化进行页面刷新,进行其他操作等
setup(props, ctx: SetupContext) {
// 监听hash变化刷新页面,更换头部导航颜色
const hashChange = () => {
window.addEventListener(
'hashchange',
() => {
console.log('hash变化');
},
false
);
};
hashChange();
}