vue-router.mjs:35 [Vue Router warn]: history.state seems to have been manually replaced without preserving the necessary values. Make sure to preserve existing history state if you are manually calling history.replaceState: history.replaceState(history.state, '', url)
时间: 2023-12-10 12:38:26 浏览: 520
这是 Vue Router 给出的一个警告,意思是你可能在手动调用 `history.replaceState` 的时候替换了 `history.state`,而没有保存必要的值。如果你确实需要手动调用 `history.replaceState`,则需要在第一个参数中传入 `history.state`,以保留现有的历史状态。例如:
```javascript
history.replaceState(history.state, '', url)
```
这样做可以避免 Vue Router 报出这个警告。如果你不需要手动调用 `history.replaceState`,则可以忽略这个警告。
阅读全文