webpack入门第一天-CSDN博客

网站介绍:文章浏览阅读126次。1.安装node2.npm install webpack@5.37.1 webpack-cli -g3.文件夹下新建src目录format.js内容如下:const priceFormat = function() { return "99.88";}//CommonJS的导出module.exports = { priceFormat}index.js内容如下:const {priceFormat} = require("./js/format.