반응형
컴포넌트를 추가 했더니
Component name should always be multi-word vue/multi-word-component-names
하면서 애러가 났다.
애러 수정방법이다
프로젝트에 vue.config.js 파일을 열고 내용을 추가 한다
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false
})
반응형
'Vue.js | Node.js' 카테고리의 다른 글
nodemon index.js 실행했더니 오류난다 (0) | 2022.04.11 |
---|---|
Property or method "data" is not defined on the instance but referenced during render (0) | 2022.03.11 |
Error: EBUSY: resource busy or locked rmdi (0) | 2021.02.09 |
vue template에서 html 태그 적용하기 (0) | 2021.01.31 |
vue template 에서 이벤트 핸들링 하기 (0) | 2021.01.30 |
Comments