webpack裏CommonJS的require與ES6 的module.exports加載模塊有何不一樣

 只需明白commonjs的規則便可,import會被轉化爲commonjs格式的,babel默認會把ES6的模塊轉化爲commonjs規範的。vue

  

import vue from 'vue';
//等價於
var vue = require('vue');
相關文章
相關標籤/搜索