vue 入口 从vue的构建过程可以知道,web环境下,入口文件在 src/platforms/web/entry-runtime-with-compiler.js(以Runtime + Compiler模式构建,vue直接运行在浏览器进行编译工作) import Vue from './runtime/index' 下一步,找到./runtime/index,发现: import Vue from 'core/index' 下一步,找到core/index,发现: import Vue fro…