revue 2.71.1

A Vue-style TUI framework for Rust with CSS styling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Runtime systems for Revue
//!
//! This module contains the core runtime systems that power Revue applications:
//! - **event**: Event handling and input processing
//! - **render**: Terminal rendering and display
//! - **layout**: Layout engine for flexible UI
//! - **dom**: DOM/CSS system for styled components
//! - **style**: Styling and theming system

pub mod dom;
pub mod event;
pub mod layout;
pub mod render;
pub mod style;