import { Component, OnInit } from '@angular/core'; @Component({ selector: 'mat-demo-table', template: ` Name Age Address {{ data.name }} {{ data.job }} {{ data.address }} `, styleUrls: ['./mat-demo-table.component.less'] }) export class MatDemoTableComponent { data = [ { name: 'Ciri', job: 'Witcher, King', address: '居无定所,可穿梭于时空之间' }, { name: 'Yennefer', job: 'Sorceress', address: '尼弗伽徳王宫二楼外交部' }, { name: 'Geralt', job: 'Witcher', address: '诺维格瑞香草酒馆' } ]; }