TIP
available in add-on @vueuse/rxjs
from / fromEvent
Two wrappers around of the original functions to allow use ref objects
Usage
import { ref } from 'vue'
import { toObserver, fromEvent, from } from '@vueuse/rxjs'
import { interval } from 'rxjs'
import { mapTo, takeUntil, withLatestFrom, map } from 'rxjs/operators'
const count = ref(0)
const button = ref<HTMLButtonElement>(null)
useSubscription(
interval(1000)
.pipe(
mapTo(1),
takeUntil(fromEvent(button, 'click')),
withLatestFrom(from(count).pipe(startWith(0))),
map(([total, curr]) => curr + total),
)
.subscribe(toObserver(count)) // same as ).subscribe(val => (count.value = val))
)
Type Declarations
export declare function from<T>(
value: ObservableInput<T> | Ref<T>
): Observable<T>
export declare function fromEvent<T extends HTMLElement>(
value: Ref<T>,
event: string
): Observable<Event>