※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
import { Component } from '@angular/core'; export class MyModel { constructor( public select: string ) {} } @Component({ moduleId: module.id, selector: 'app-root', templateUrl: 'app.component.html', styleUrls: ['app.component.css'] }) export class AppComponent { message = ''; model = new MyModel(''); items = ['One', 'Two', 'Three', 'Four', 'Five']; onSubmit() { this.message = '「' + this.model.select + '」を選択。'; this.items.push('追加 (' + this.items.length + ')'); } }
<< 前へ | 次へ >> |