[Vuejs]-Get Started with RxJS in Vue

0👍

It was being loaded into the global scope, so I had to use it like this:

var dataSource = window.Rx.Observable ...
👤Donnie

0👍

Rx was undefined most likely because you were trying to pull it from the incorrect scope.

It should have been: import Rx from 'rxjs/Rx';

Leave a comment