配置项import babel from 'rollup-plugin-babel';export default { entry: 'index.js', format: 'cjs', dest: 'dist/wxdraw.js', plugins: [ babel({ exclude: 'node_modules/**', }) ], banner: "wxDraw"};index.jsvar { Shape }= "./shape/shape.js";........module.exports = { //这样写是为了 小程序 使用 WxDraw: WxDraw, Shape: Shape // 只有此处导出用到了Shape }打包出来后var _shapeShapeJs = "./shape/shape.js"; // 也就是并没有把代码放进来 还是一个路径 var Shape = _shapeShapeJs.Shape;.......module.exports = { //这样写是为了 小程序 使用 WxDraw: WxDraw, Shape: Shape // 只有此处导出用到了Shape }这种 情况咋整?
1 回答
凤凰求蛊
TA贡献1825条经验 获得超4个赞
var { Shape }= "./shape/shape.js";
// 改成
import { Shape } from './shape/shape.js'
添加回答
举报
0/150
提交
取消