vize_atelier_core 0.211.0

Atelier Core - The core workshop for Vize Vue template parsing and transforms
Documentation
//! Slot generation functions.
//!
//! Generates slot objects for component children.

mod detect;
mod generate;
mod outlet;
mod params;

#[cfg(test)]
mod tests;

pub(crate) use outlet::{
    generate_slot_outlet_name, generate_slot_outlet_props, generate_slot_outlet_props_with_key,
    has_slot_outlet_props,
};

pub use detect::{has_dynamic_slots_flag, has_slot_children};
pub use generate::generate_slots;