解决浏览器端 globalThis is not defined 报错

解决浏览器端 globalThis is not defined 报错

  • 前言
  • 解决办法:

前言

在使用低版本火狐浏览器出现报错globalThis is not defined

解决办法:

在vue的index.html 中添加 this.globalThis || (this.globalThis = this)
解决浏览器端 globalThis is not defined 报错_第1张图片

<head>
    <script>
        this.globalThis || (this.globalThis = this)
    </script>
    ...
</head>

你可能感兴趣的:(vue问题解决,vue,浏览器,火狐浏览器)