解决vue项目eslint校验 Do not use 'new' for side effects 的两种方法
Posted xinzaimengzai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决vue项目eslint校验 Do not use 'new' for side effects 的两种方法相关的知识,希望对你有一定的参考价值。
import Vue from ‘vue‘ import App from ‘./App.vue‘ import router from ‘./router‘ new Vue({ el: ‘#app‘, render: h => h(App), router })
当使用eslint校验运行上面这段代码时(该代码在src/main.js文件中),会报错
? http://eslint.org/docs/rules/no-new Do not use ‘new‘ for side effects
src/main.js:8:1
new Vue({
两种方法解决该问题:
方法一:定义一个变量xxx(可为任意值)接收新创建的Vue
let xxx = new Vue({ el: ‘#app‘, render: h => h(App), router }) Vue.use({ xxx })
方法二:在new Vue的上方添加一行注视,让eslint不检查"no-new"
import Vue from ‘vue‘ import App from ‘./App.vue‘ import router from ‘./router‘ /* eslint-disable no-new */ new Vue({ el: ‘#app‘, render: h => h(App), router })
参考博客及评论
https://www.cnblogs.com/xzma/p/7727412.html
以上是关于解决vue项目eslint校验 Do not use 'new' for side effects 的两种方法的主要内容,如果未能解决你的问题,请参考以下文章
vue 命令行报错“Do not use ‘new’ for side effects“
Do not access Object.prototype method 'hasOwnProperty' 问题原因及解决方法
解决:使用 Vue 3 Script Setup 时 ESLint 报错 ‘defineProps‘ is not defined