어제까지만해도 잘 되던것이 왜 오늘은 안되는지?
module.exports = {
"env": {
"node":true, <= 추가해준 부분
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"parserOptions": {
"ecmaVersion": 11,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"vue/multi-word-component-names": ["error", {
"ignores": ["default", "Login", "Home", "About"]
}],
'vue/no-deprecated-slot-attribute': 'off'
},
};
.eslintrc.js 의 파일내에 "node":true 추가를 하시면 깔끔하게 오류가 해결이 됩니다.
https://stackoverflow.com/questions/50894000/eslint-process-is-not-defined/50894051#50894051
[VUEJS] 공통함수 만들고 적용하는 방법 (0) | 2022.05.26 |
---|---|
[vuejs] v-for와 v-if를 같이 쓰면 에러발생 오류 해결하기 (0) | 2022.05.20 |
[VueJS] URL 에 # (hashbang) 제거하기 (0) | 2022.04.01 |
[VUEJS]VeeValidate 4.0 추가 방법 (0) | 2022.03.08 |
[VUEJS]Vuetify Titan project 생성(How to create Vuetify titan project?) (0) | 2022.03.08 |