Ошибка типа: не удалось получить динамически импортированный модуль: https://dev.jspm.io/app-draggable-portlets-template@0.0.34 - PullRequest
0 голосов
/ 23 марта 2020

Может кто-нибудь помочь мне с этой ошибкой?

Вот плункер: https://plnkr.co/edit/REhfoeZ3CaoYOneY?preview

//our root app component
import { Component, NgModule, VERSION } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppDraggablePortletsTemplateModule } from 'app-draggable-portlets-template';

@Component({
    selector: 'my-app',
    template: `
    <app-load-portlets configFile="data.json"></app-load-portlets>
    `,
})
export class App {
    name: string;
    constructor() {
        this.name = `Angular! v${VERSION.full}`;
    }
}

@NgModule({
    imports: [BrowserModule,AppDraggablePortletsTemplateModule],
    declarations: [App],
    bootstrap: [App],
})
export class AppModule {}

А вот компонент: https://www.npmjs.com/package/app-draggable-portlets-template

...