Chèn file js vào angular 6 có cách nào hay hơn không?

Của mình thế này :slight_smile:


import { Component, Input } from '@angular/core';
declare var cong:any;

@Component({
  selector: 'hello',
  template: `
    <div>just plus</div>
    a : <input [(ngModel)]="a" /><br>
    b : <input [(ngModel)]="b" /><br>
    <div>Cộng lại là : {{kq}}</div>
    <button (click)="on_test();" >Cộng lại</button>
  `,
  styles: [`h1 { font-family: Lato; }`]
})
export class HelloComponent  {
  @Input() name: string;
  a:number=10;
  b:number=10;
  kq:number;
  on_test(){
    let a=parseInt(this.a);
    let b=parseInt(this.b);
    this.kq=cong(a,b);
  }
  
}




#this is demo:

https://stackblitz.com/edit/angular-bj1pmc

liệu có cách nào khác không?

83% thành viên diễn đàn không hỏi bài tập, còn bạn thì sao?