Created
March 8, 2015 16:52
-
-
Save dested/0e1ae2dfe0001af0bd5e to your computer and use it in GitHub Desktop.
Angular 2 One Component Selector
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
<ion-tab title="Title One!">Content 1</ion-tab> | |
<ion-tab title="Title Two!">Content 2!</ion-tab> | |
@Component({ | |
selector: 'ion-tab', | |
model:{ | |
title:'title' | |
} | |
}) | |
@Template({ | |
inline: `<div>{{title}}<content/></div>`, | |
directives: [] | |
}) | |
export class IonTab { | |
constructor() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment