docs(demos): add segment demo

This commit is contained in:
Drew Rygh
2015-11-10 22:34:45 -06:00
parent e43d0e6057
commit 4a51a98f69
12 changed files with 96 additions and 0 deletions

View File

@ -0,0 +1,14 @@
import {Page} from 'ionic/ionic';
import {forwardRef} from 'angular2/angular2';
import {AndroidAttribute} from '../../helpers';
@Page({
templateUrl: 'inputs/segment/template.html',
directives: [forwardRef(() => AndroidAttribute)]
})
export class SegmentPage{
constructor() {
this.pet = "puppies";
}
}