🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ***** ## 7 index.js 模板编译入口 >[info] import ~~~ ;(导入)代码解析,解析优化,生成渲染函数 import { parse } from './parser/index' import { optimize } from './optimizer' import { generate } from './codegen' ~~~ >[info] module ~~~ ;模板编译入口,生成渲染函数 export function compile (template, options) { const ast = parse(template.trim(), options) optimize(ast, options) return generate(ast, options) } ~~~ >[info] export ~~~ ;(导出)模板编译接口 export function compile (template, options) {} ~~~