mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
13 lines
183 B
TypeScript
13 lines
183 B
TypeScript
import { Directive } from '@angular/core';
|
|
|
|
/**
|
|
* @hidden
|
|
*/
|
|
@Directive({
|
|
selector: 'ion-item,[ion-item]',
|
|
host: {
|
|
'class': 'item-block'
|
|
}
|
|
})
|
|
export class ItemContent { }
|