1、安装screenfull@6.0.2后,启动项目。报错
解决方案:
第一种:卸载6.0的版本,安装 screenfull@5.1.0
第二种:
vue.config.js文件中配置属性
第三种:
安装插件'@babel/plugin-proposal-nullish-coalescing-operator'
在babel.config.js配置
/* es5,es6新语法编译 */
module.exports = {
compact: false,
plugins: ['@babel/plugin-proposal-nullish-coalescing-operator']
}
2、使用
import screenfull from 'screenfull'
screenfull.toggle()