$ npm install jquery
import jQuery from 'jquery'
...
const app = createApp(App)
...
global.$ = jQuery
error '$' is not defined no-undef
원인 : ESlint의 'no-undef' 룰에 의해서 생기는 에러, 변수가 scope 안에 정의되어 있지 않거나 알려진 global(known global) 이 아닐 경우 에러가 생긴다.
해결 : eslint config에 global 옵션 추가
"eslintConfig": {
"globals": {
"todoEventBus": "readable"
}
}