Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据tippy.js git hub页面,我使用npm安装了它:
npm i tippy.js
现在我有一个用于 webpack 4 html 页面的 .js 源文件,该页面将输出到我的 ./dist 文件夹,但我不知道如何导入它;我的另一个选择是从 CDN 中包含它,但这似乎不是很 webpackesque
我也通过 babel-loader stage-0 使用 ES6;那么我该如何将它导入到我的捆绑包中呢?
不应该也需要导入tippy的CSS吗?
好的,我在这里找到了
import tippy from 'tippy.js'
对于 CSS,它是
import 'tippy.js/dist/tippy.css'