Ver código fonte

fix: use_state

Jonathan Kelley 3 anos atrás
pai
commit
c092bd4
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      packages/hooks/src/usestate.rs

+ 2 - 0
packages/hooks/src/usestate.rs

@@ -61,6 +61,8 @@ pub fn use_state<'a, T: 'static>(
         }
     });
 
+    hook.current_val = hook.slot.borrow().clone();
+
     (hook.current_val.as_ref(), hook)
 }