function useSelector<TSource, TSelected>(
source,
selector?,
options?): Readonly<Ref<TSelected>>;Defined in: node_modules/.pnpm/@tanstack+vue-store@0.11.0_vue@3.5.34_typescript@5.9.3_/node_modules/@tanstack/vue-store/dist/useSelector.d.ts:33
Selects a slice of state from an atom or store and subscribes the component to that selection.
This is the primary Vue read hook for TanStack Store. It returns a readonly ref containing the selected value.
Omit the selector to subscribe to the whole value.
TSource
TSelected = NoInfer<TSource>
SelectionSource<TSource>
(snapshot) => TSelected
UseSelectorOptions<TSelected>
Readonly<Ref<TSelected>>
const count = useSelector(counterStore, (state) => state.count)
console.log(count.value)const value = useSelector(countAtom)