vize_atelier_sfc 0.40.0

Atelier SFC - The Single File Component workshop for Vize
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Inline mode script compilation.
//!
//! This module handles compilation of script setup with inline template mode,
//! where the render function is inlined into the setup function.

mod compiler;
pub(crate) mod helpers;
#[cfg(test)]
mod tests;
pub(crate) mod type_handling;

pub use compiler::compile_script_setup_inline;