<compose> with view-model.bind="string" - Can I bundler to look in bundle for the component?

Wonderful! Thank you! It works :heart_eyes:

Side note: At first it didn’t work… Systemjs still made a request to the server to fetch the base class of the view model (using type script). Turned out that I had

import { Layout } from '../Layout';

instead of

import { Layout } from '../layout';

when importing the base class in the view model… :slight_smile:

1 Like