Returns a ReadonlyObservable<boolean> that flips from false to true after the component mounts. Use as a scope-internal gate — e.g. to defer an effect, subscription setup, or a setOptions call until after mount.
Unlike useWhenMounted (which wraps a callback), this hook exposes the raw mounted flag so scope code can .peek() or .get() it conditionally inside observe().
Use .get() inside observe() so the effect re-runs when the mounted flag flips — the initial pre-mount run short-circuits, then the post-mount re-run proceeds.