vue2中使用全屏screenfull插件遇到的问题
安装插件'@babel/plugin-proposal-nullish-coalescing-operator'第一种:卸载6.0的版本,安装 screenfull@5.1.0。1、安装screenfull@6.0.2后,启动项目。vue.config.js文件中配置属性。在babel.config.js配置。
·
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()
更多推荐
已为社区贡献1条内容
所有评论(0)