只需明白commonjs的规则即可,import会被转化为commonjs格式的,babel默认会把ES6的模块转化为commonjs规范的。 import vue from 'vue'; //等价于 var vue = require('vue');