使用ES6 語法匯入jQuery
使用ES6 語法與Babel 轉譯器和語意UI 時,jQuery 可以如下完成:
index.js
<code class="js">import { $, jQuery } from 'jquery'; // export for others scripts to use window.$ = $; window.jQuery = jQuery;</code>
說明:
以上是如何在 Babel 和 Semantic-UI 中使用 ES6 語法匯入 jQuery?的詳細內容。更多資訊請關注PHP中文網其他相關文章!