router
router copied to clipboard
当我在页面中使用onclick="window.history.back(-1)"时,会报错找不到url
当我在页面中使用onclick="window.history.back(-1)"时,会报错找不到url 报错提示: router.min.js:6 Uncaught Error: url was not found
我修改了src/index.js 第198行
throw new Error(url ${url} was not found);
改为
if(!url){return;}throw new Error(url ${url} was not found);