VS Code에서 Auto Close Tag 를 깔았는데 뭔가 잘 안된다.
심지 어 <div>를 치고 싶은데
<divisibleby> 로 자동완성이 된다.
이유를 알아보니 VS Code 에서 html 을 django-html 로 인식하고 있었기 때문.
1.
settings.json 에 들어가서 다음과 같은 내용을 추가해준다.
"files.associations":{
"*.html":"html"
},
2.
File > Preference > Settings > Linked Editing 검색 > 체크 해주기
이 두가지를 해주니 잘된다.
'Vue.js' 카테고리의 다른 글
라우팅 기본 (0) | 2021.04.25 |
---|---|
Created / Mount (0) | 2021.04.06 |
모듈 내보내기 ,가져오기 두가지방법 CommonJS / ES6 (0) | 2020.07.02 |
npm run build / npm run serve 한번에 해주는 플러그인 (maven) (0) | 2020.07.01 |
에러!! <strong>We're sorry but frontend doesn't work properly without JavaScript enabled. Please enable it to continue.</strong> (0) | 2020.07.01 |