Skip to content

Instantly share code, notes, and snippets.

@actarian
Created December 16, 2019 21:05
Show Gist options
  • Save actarian/7185a3c72ad1e778307cb25dd52f34cd to your computer and use it in GitHub Desktop.
Save actarian/7185a3c72ad1e778307cb25dd52f34cd to your computer and use it in GitHub Desktop.
RxComp - TodoItemComponent Meta
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