关于 globalThis is not defined 报错问题

这是我在检查一个vue在线项目的时候发现的
关于 globalThis is not defined 报错问题_第1张图片
我使用的是搜狗游览器测试,因为内核版本只有65,导致有这个问题,在内核70+的游览器不存在这个问题,解决方法也很简单,在报错界面添加上以下代码解决(PS:不知道报错具体位置,就直接在main.js里面添加)

!(function (t) {
  function e() {
    var e = this || self;
    (e.globalThis = e), delete t.prototype._T_;
  }
  "object" != typeof globalThis &&
    (this
      ? e()
      : (t.defineProperty(t.prototype, "_T_", {
          configurable: !0,
          get: e,
        }),
        _T_));
})(Object);

你可能感兴趣的:(WEB开发,javascript,vue.js,开发语言)