当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript material.MdDialogModule类代码示例

本文整理汇总了TypeScript中@angular/material.MdDialogModule的典型用法代码示例。如果您正苦于以下问题:TypeScript MdDialogModule类的具体用法?TypeScript MdDialogModule怎么用?TypeScript MdDialogModule使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了MdDialogModule类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: beforeEach

    beforeEach(() => {
        TestBed.configureTestingModule({
            declarations: [EmployerComponent], // declare the test component
            schemas: [CUSTOM_ELEMENTS_SCHEMA],
            imports: [HttpModule, ReactiveFormsModule, RouterModule.forRoot(routes),
                MdDialogModule.forRoot(), StoreModule.provideStore({ employerStore: reducer }, {})],
            providers: [EmployerActions, IdActions, AuditActions, ProgressActions,
                { provide: RegDataService, useClass: mockRegDataSvc },
                { provide: APP_BASE_HREF, useValue: '/' }]
        });

        fixture = TestBed.createComponent(EmployerComponent);
        component = fixture.componentInstance;

    });
开发者ID:mnitdeed,项目名称:angular2-nativescript-auth0,代码行数:15,代码来源:employer.component.spec.ts

示例2:

  MdDialogModule,
  MdSelectModule,
  MdSnackBarModule
} from '@angular/material';
import {BrowserModule} from '@angular/platform-browser';
import {MockBackend} from '@angular/http/testing';

export const COMMON_TESTING_MODULES = [
  BrowserModule,
  FormsModule,
  MdButtonModule.forRoot(),
  MdButtonToggleModule.forRoot(),
  MdCardModule.forRoot(),
  MdCheckboxModule.forRoot(),
  MdCoreModule.forRoot(),
  MdDialogModule.forRoot(),
  MdGridListModule.forRoot(),
  MdIconModule.forRoot(),
  MdInputModule.forRoot(),
  MdListModule.forRoot(),
  MdMenuModule.forRoot(),
  MdProgressBarModule.forRoot(),
  MdProgressCircleModule.forRoot(),
  MdRadioModule.forRoot(),
  MdSelectModule.forRoot(),
  MdSidenavModule.forRoot(),
  MdSlideToggleModule.forRoot(),
  MdSliderModule.forRoot(),
  MdSnackBarModule.forRoot(),
  MdTabsModule.forRoot(),
  MdToolbarModule.forRoot(),
开发者ID:shardis,项目名称:spring-angular2-starter,代码行数:31,代码来源:testing.modules.ts


注:本文中的@angular/material.MdDialogModule类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。