只需明白commonjs的規則便可,import會被轉化爲commonjs格式的,babel默認會把ES6的模塊轉化爲commonjs規範的。vue
import vue from 'vue'; //等價於 var vue = require('vue');