verter_core 0.0.1-beta.1

Vue 3 SFC compiler - transforms Vue Single File Components to render functions with TypeScript support
Documentation
1
2
3
4
5
6
7
8
9
//! Template codegen — converts the template AST to render functions.
//!
//! Uses a strategy pattern: a shared tree walker dispatches to a
//! [`code_gen::TemplateCodeGen`](code_gen::TemplateCodeGen) trait, with VDOM
//! and Vapor backends as concrete implementations. OXC is used for expression
//! parsing and binding resolution within template interpolations and directives.

pub mod code_gen;
pub mod oxc;