ESlint全局變量報錯


場景:

在main.js下申明了全局變量:

/* eslint no-undef: "error" */
window.vm = new Vue({
  el: '#app',
  router,
  store,
  components: { App },
  template: '<App/>'
})

 

在fetch的index.js中用element的message組件,出現ESlint報錯

          vm.$message({
            message: response.msg,
            type: 'warning'
          })

 

解決方案:

是的,沒錯,加了

/* global vm */

就不會報錯了

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM