Nativescript Angular 2 Telerik Ui未加载

问题描述 投票:1回答:1

好吧,我做的就像安装指南qazxsw poi

http://docs.telerik.com/devtools/nativescript-ui/getting-started

我通过NPM安装它但我仍然收到相对于app / tns_modules /找不到模块“nativescript-telerik-ui / sidedrawer / angular”

angular telerik nativescript angular2-nativescript nativescript-telerik-ui
1个回答
1
投票

他们改变了包裹。现在,您必须使用以下命令安装插件:

import { SIDEDRAWER_DIRECTIVES } from "nativescript-telerik-ui/sidedrawer/angular";
@NgModule({
    imports: [
        NativeScriptModule,
        NativeScriptHttpModule,
        NativeScriptFormsModule,
        CalendarModule,
        AppRoutingModule
        ],
    declarations: [
        AppComponent,
        SIDEDRAWER_DIRECTIVES,
        ],
...
© www.soinside.com 2019 - 2024. All rights reserved.