17
ES6 구문을 사용하여 jquery를 가져 오는 방법은 무엇입니까?
(JavaScript)를 사용하여 새 앱을 작성하고 있습니다. ES6babel트랜스 파일러와 preset-es2015플러그인을 통해 구문을 있습니다.semantic-ui 하여 스타일 하고 있습니다. index.js import * as stylesheet from '../assets/styles/app.scss'; import * as jquery2 from '../dist/scripts/jquery.min'; import * as jquery3 from '../node_modules/jquery/dist/jquery.min'; console.log($('my-app')); index.html <!DOCTYPE html> <html lang="fr"> <head> <body> <script src="dist/app.js"></script> </body> </html> 프로젝트 구조 . …