Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 932 Bytes

useSpring.md

File metadata and controls

45 lines (34 loc) · 932 Bytes

useSpring

Vue animation hook that updates a single numeric value over time according to spring dynamics.

Usage

import useSpring from 'vue-next-use/lib/useSpring';

const Demo = {
  setup(){
      const [target, setTarget] = useState(50);
      const value = useSpring(target);

      return () => (
          <div>
              {value.value}
              <br />
              <button onClick={() => setTarget(0)}>Set 0</button>
              <button onClick={() => setTarget(100)}>Set 100</button>
          </div>
      );
  }
};

Note: Because of dependency on rebound you have to import this hook directly like shown above.

Requirements

Install rebound peer dependency:

npm add rebound
# or
yarn add rebound

Reference

const currentValue = useSpring(targetValue);
const currentValue = useSpring(targetValue, tension, friction);