Vue template到render的过程 过程分析 vue的模板编译过程主要如下:template -> ast -> render函数 vue在模板编译版本的源码中会执行compileToFunctions将template转化为render函数 // 将模板编译为render函数 const { render, staticRenderFns } = compileToFunctions(template,optinos//省略}, this) compileToFunctions中的主要逻辑如下: 1.调用parse方法将template转化为ast(抽象语法树) con...