标签:NPU template url angular style mod bind div pre
<input type="text" [(ngModel)]="name"> {{name}}
import { Component, OnInit } from ‘@angular/core‘;
@Component({
selector: ‘app-bind‘,
templateUrl: ‘./bind.component.html‘,
styleUrls: [‘./bind.component.css‘]
})
export class BindComponent implements OnInit {
private name;
constructor() { }
ngOnInit() {
this.name = ‘cys‘;
}
}
标签:NPU template url angular style mod bind div pre
原文地址:https://www.cnblogs.com/chenyishi/p/8920494.html