We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ecf16 commit 0f6ce28Copy full SHA for 0f6ce28
scripts/templates/tabs/html.tmpl
@@ -0,0 +1,3 @@
1
+<ion-tabs>
2
+ $TAB_CONTENT
3
+</ion-tabs>
scripts/templates/tabs/scss.tmpl
+.$FILENAME {
+
+}
scripts/templates/tabs/ts.tmpl
@@ -0,0 +1,13 @@
+import { Component } from '@angular/core';
+import { NavController } from 'ionic-angular';
+$TAB_IMPORTS
4
5
+@Component({
6
+ templateUrl: '$FILENAME.html'
7
+})
8
+export class $CLASSNAME {
9
10
+ $TAB_VARIABLES
11
12
+ constructor(public navCtrl: NavController) {}
13
0 commit comments