mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00

committed by
Dan Bucholtz

parent
d8ecf16feb
commit
0f6ce2857a
3
scripts/templates/tabs/html.tmpl
Executable file
3
scripts/templates/tabs/html.tmpl
Executable file
@ -0,0 +1,3 @@
|
||||
<ion-tabs>
|
||||
$TAB_CONTENT
|
||||
</ion-tabs>
|
3
scripts/templates/tabs/scss.tmpl
Executable file
3
scripts/templates/tabs/scss.tmpl
Executable file
@ -0,0 +1,3 @@
|
||||
.$FILENAME {
|
||||
|
||||
}
|
13
scripts/templates/tabs/ts.tmpl
Executable file
13
scripts/templates/tabs/ts.tmpl
Executable 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) {}
|
||||
}
|
Reference in New Issue
Block a user