You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import { EventAggregator } from "aurelia-event-aggregator";
@inject(EventAggregator)
export class Index
{
constructor(eventAggregator)
{
this.eventAggregator = eventAggregator;
this.eventAggregator.publish("VersionRequest", {});
}
}
With decorator, I get this error:
Uncaught (in promise) Error: No view model found in module "pages/retrieval/selection/index".
at eval (eval at 93 (0.bundle.js:4528), <anonymous>:3254:15)
at <anonymous>
Without the decorator, works fine (of course, I need it)
The text was updated successfully, but these errors were encountered:
Hi JCKodel, you are correct, I was able to reproduce this! I am going to update the dependencies and check the boilerplate from the latest Aurelia releases, but you'll have to be a bit patient! I won't be able to touch this for a little while. Oh, and let me know if you were able to fix it and how.
With decorator, I get this error:
Without the decorator, works fine (of course, I need it)
The text was updated successfully, but these errors were encountered: