Web Demo Mobile Demo Angular Demo Vue Demo React Demo
源代码
import { Component } from '@angular/core';

@Component({
	selector: 'app-root',
	template: `
		<h2>Custom Value</h2>
		<div style="margin-bottom:20px">
			<eui-progressbar value="40" [showValue]="true"></eui-progressbar>
		</div>
		<div style="margin-bottom:20px">
			<eui-progressbar value="70" [showValue]="false">Processing 70%</eui-progressbar>
		</div>
		<div style="margin-bottom:20px">
			<div style="text-align:right">50%</div>
			<eui-progressbar value="50" [showValue]="false" barCls="c6" style="height:4px"></eui-progressbar>
		</div>
	`
})
export class AppComponent {
	
}
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { BrowserModule } from '@angular/platform-browser';
import { HttpModule } from '@angular/http';
import { EasyUIModule } from 'easyui/easyui/easyui.module';


import { AppComponent }   from './app.component';

@NgModule({
  bootstrap: [
    AppComponent
  ],
  declarations: [
    AppComponent
  ],
  imports: [
    FormsModule,
    BrowserModule,
    HttpModule,
    EasyUIModule
  ]
})
export class AppModule { }

import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';

enableProdMode();

platformBrowserDynamic().bootstrapModule(AppModule);