Updated: starter

This commit is contained in:
buchslava
2015-10-08 17:29:52 +03:00
parent 2175ef872f
commit b15fd587ae
28 changed files with 2320 additions and 13 deletions

View File

@@ -0,0 +1,3 @@
<p>
<input [ng2-file-select]="">
</p>

View File

@@ -0,0 +1,21 @@
/// <reference path="../../../tsd.d.ts" />
import {
Component, View, EventEmitter,
CORE_DIRECTIVES, FORM_DIRECTIVES, NgClass
} from 'angular2/angular2';
import {fileUpload} from '../../../components/index';
// webpack html imports
let template = require('./simple-demo.html');
@Component({
selector: 'simple-demo'
})
@View({
template: template,
directives: [fileUpload, NgClass, CORE_DIRECTIVES, FORM_DIRECTIVES]
})
export class SimpleDemo {
}