main.js 183 B

123456
  1. // 通过 CommonJS 规范导入 css 模块
  2. require('./main.css');
  3. // 通过 CommonJS 规范导入 show 函数
  4. const show = require('./show.js');
  5. // 执行 show 函数
  6. show('Webpack');