angular practice-component

龙剑伟發表於2024-07-02

https://angular.dev/tutorials/learn-angular/2-updating-the-component-class

example1:
import {Component} from '@angular/core';

@Component({
selector: 'app-root',
template: Hello, i dwell in {{city}} of {{province}} ,
standalone: true,
})
export class AppComponent {
city='Guang Zhou';
province= 'Guangdong province'
}

output:
Hello, i dwell in Guang Zhou of Guangdong province

相關文章