@Component({ selector: 'tabs',template: ` ` }) export class Tabs { }
使用TypeScript和ES7,@ Something是装饰器.在Angular2的上下文中,@ Component,@ Injectable等装饰器使用Reflect.defineMetadata方法定义装饰元素的元数据.
这个问题可能会让你感兴趣,找出装饰器实际上是什么:
> How are decorators (annotations) compiled in Typescript?