fix(templates): add template tabs #8207 (#8208)

This commit is contained in:
Ramon Henrique Ornelas
2016-09-26 00:20:01 -03:00
committed by Dan Bucholtz
parent d8ecf16feb
commit 0f6ce2857a
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,3 @@
<ion-tabs>
$TAB_CONTENT
</ion-tabs>

View File

@ -0,0 +1,3 @@
.$FILENAME {
}

13
scripts/templates/tabs/ts.tmpl Executable file
View File

@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
$TAB_IMPORTS
@Component({
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {
$TAB_VARIABLES
constructor(public navCtrl: NavController) {}
}