Skip to content

Commit ea9de09

Browse files
committed
Aborted failed trait-based VDOM attempt
1 parent 263a63e commit ea9de09

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Changelog
2+
3+
## V0.2.3
4+
- Fixed a bug where initially-empty text won't update
5+
- Added more tests
6+
7+
## V0.2.2
8+
- Overhaul of fetch module
9+
- Added server-integration example
10+
11+
## V0.2.1
12+
- Added support for custom tags
13+
- Added `class!` and `id!` convenience macros for setting style
14+
15+
## v0.2.0
16+
17+
- Added high-level fetch api
18+
- Added routing
19+
- Added element lifecycles (did_mount, did_update, will_unmount)
20+
- Added support for updating state outside events
21+
- Added server_interaction, and homepage (this site) examples
22+
23+
## v0.1.0
24+
25+
- Initial release

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub use crate::{
2727
fetch::{Method, Request, spawn_local},
2828
websys_bridge::{to_input, to_kbevent, to_mouse_event, to_select, to_textarea, to_html_el},
2929
routing::push_route,
30+
util::{document, window},
3031
vdom::{App, run}
3132
};
3233

0 commit comments

Comments
 (0)