프론트엔드💛

[Vue] component name should always be multi-word 에러

dalin❤️ 2022. 7. 18. 20:09

module.exports = {
  ...
  plugins: ["prettier"],
  rules: {
  	...
    "vue/multi-word-component-names": [
      "error",
      {
        ignores: ["Message", "Input"],
      },
    ],
  },
};

Message를 컴포넌트 이름으로 사용하고 싶은데, 한 단어라서 안된다고 했다.

그럴 때 .eslintrc.js에서 rules에 추가해주면 된당.

728x90