0👍
It was being loaded into the global scope, so I had to use it like this:
var dataSource = window.Rx.Observable ...
- [Vuejs]-WebPack HTML and File Loader with programmatic img src
- [Vuejs]-Check if it's possible to go forward when using vue-router
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';
Source:stackexchange.com