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
//! State management for Revue
//!
//! This module contains state management systems:
//! - **reactive**: Reactive signals and computed values
//! - **patterns**: Common state management patterns
//! - **tasks**: Async task management
//! - **plugin**: Plugin system
//! - **worker**: Background worker threads

pub mod patterns;
pub mod plugin;
pub mod reactive;
pub mod tasks;
pub mod worker;