Created
December 16, 2019 21:05
-
-
Save actarian/7185a3c72ad1e778307cb25dd52f34cd to your computer and use it in GitHub Desktop.
RxComp - TodoItemComponent Meta
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TodoItemComponent.meta = { | |
selector: '[todo-item-component]', | |
inputs: ['item'], | |
outputs: ['toggle', 'remove'], | |
hosts: { host: HostFactory }, | |
template: ` | |
<button type="button" class="btn--toggle" (click)="onToggle(item)"> | |
<div class="date" [innerHTML]="item.date | date : 'en-US' : { month: 'short', day: '2-digit', year: 'numeric' }"></div> | |
<div class="title" [innerHTML]="item.name"></div> | |
</button> | |
<button type="button" class="btn--remove" (click)="onRemove(item)"> | |
<i class="icon--remove"></i> | |
</button> | |
`, | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment