美文网首页
ERROR in [eslint] /Users/liusy/

ERROR in [eslint] /Users/liusy/

作者: 冰点雨 | 来源:发表于2022-10-11 18:21 被阅读0次

    错误信息

    ERROR in [eslint] 
    /Users/liusy/Desktop/vue/vue_test/vue_test/src/components/Home.vue
      9:11  error  Component name "Home" should always be multi-word  vue/multi-word-component-names
    
    ✖ 1 problem (1 error, 0 warnings)
    

    解决方法:

    在vue.config.js里加一句lintOnSave: false,关闭 elsint 检测

    const { defineConfig } = require('@vue/cli-service')
    module.exports = defineConfig({
      transpileDependencies: true,
      lintOnSave: false
    })
    

    相关文章

      网友评论

          本文标题:ERROR in [eslint] /Users/liusy/

          本文链接:https://www.haomeiwen.com/subject/qbjzartx.html