test(option) {
let route = this.$route;
let query = this._.cloneDeep(route.query);
for (let key in option) {
query[key] = option[key];
}
this.$router.push({path: route.path, query: query});
}
在其他浏览器上运行没有问题,在ie上运行数次后会出现以下报错:
不知道是什么问题引起的,求大神指点
这是 localhost 访问吧
ie的安全级别过高
工具--internet选项--安全--自定义级别--其它--通过域访问数据源
生产环境应该没事