是否有人成功地将Bootpag导入为ES6模块?这是唯一的分页插件,我发现它拥有我所需要的所有功能,但我似乎无法导入它。npm包在这里:https://www.npmjs.com/package/bootpag
我试过了
import bootpag from 'bootpag'
import * as bootpag from 'bootpag'但我得到的只是错误:
Unhandled promise rejection TypeError: "__WEBPACK_IMPORTED_MODULE_3_jquery___default(...)(...).bootpag is not a function"发布于 2018-10-18 08:34:53
以下工作:
import 'bootpag/lib/jquery.bootpag.min';https://stackoverflow.com/questions/52869014
复制相似问题