tab-index.html 1.7 KB

1234567891011121314151617181920212223242526272829303132
  1. <ion-view view-title="Dashboard">
  2. <ion-content class="padding">
  3. <h2>Welcome to Ionic</h2>
  4. <p>
  5. This is the Ionic starter for tabs-based apps. For other starters and ready-made templates, check out the <a href="http://market.ionic.io/starters" target="_blank">Ionic Market</a>.
  6. </p>
  7. <p>
  8. To edit the content of each tab, edit the corresponding template file in <code>www/templates/</code>. This template is <code>www/templates/tab-dash.html</code>
  9. </p>
  10. <p>
  11. If you need help with your app, join the Ionic Community on the <a href="http://forum.ionicframework.com" target="_blank">Ionic Forum</a>. Make sure to <a href="http://twitter.com/ionicframework" target="_blank">follow us</a> on Twitter to
  12. get important updates and announcements for Ionic developers.
  13. </p>
  14. <p>
  15. For help sending push notifications, join the <a href="https://apps.ionic.io/signup" target="_blank">Ionic Platform</a> and check out <a href="http://docs.ionic.io/docs/push-overview" target="_blank">Ionic Push</a>. We also have other services
  16. available.
  17. </p>
  18. 123456
  19. <div>
  20. <h2>Model Value</h2>
  21. <pre>{{vm.model | json}}</pre>
  22. </div>
  23. <form ng-submit="vm.onSubmit()" name="vm.form" novalidate>
  24. <formly-form model="vm.model" fields="vm.fields" options="vm.options" form="vm.form">
  25. <button type="submit" class="btn btn-primary submit-button" ng-disabled="vm.form.$invalid">Submit</button>
  26. <button type="button" class="btn btn-default" ng-click="vm.options.resetModel()">Reset</button>
  27. </formly-form>
  28. </form>
  29. </ion-content>
  30. </ion-view>