Vue first parses the template into an AST in a process known as the template parsing:
function compile(template) { const ast = parse(template) transform(ast, transformations) return generate(ast) }