Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. <template>
  2. <div id="app">
  3. <ion-app>
  4. <ion-vue-router main/>
  5. <ion-tabs>
  6. <ion-tab tab="home" :routes="['home']">
  7. </ion-tab>
  8. <ion-tab tab="about">
  9. </ion-tab>
  10. <ion-tab tab="profile">
  11. </ion-tab>
  12.  
  13. <ion-tab-bar slot="bottom">
  14.  
  15. <ion-tab-button tab="home">
  16. <ion-label>Home</ion-label>
  17. <ion-icon name="home"></ion-icon>
  18. <ion-badge>6</ion-badge>
  19. </ion-tab-button>
  20.  
  21. <ion-tab-button tab="profile">
  22. <ion-label>Profile</ion-label>
  23. <ion-icon name="information-circle"></ion-icon>
  24. </ion-tab-button>
  25.  
  26. <ion-tab-button tab="about">
  27. <ion-label>About</ion-label>
  28. <ion-icon name="information-circle"></ion-icon>
  29. </ion-tab-button>
  30.  
  31. </ion-tab-bar>
  32. </ion-tabs>
  33. </ion-app>
  34. </div>
  35. </template>
  36.  
  37. <style>
  38. #app {
  39. font-family: 'Avenir', Helvetica, Arial, sans-serif;
  40. -webkit-font-smoothing: antialiased;
  41. -moz-osx-font-smoothing: grayscale;
  42. text-align: center;
  43. color: #2c3e50;
  44. }
  45. #nav {
  46. padding: 30px;
  47. }
  48.  
  49. #nav a {
  50. font-weight: bold;
  51. color: #2c3e50;
  52. }
  53.  
  54. #nav a.router-link-exact-active {
  55. color: #42b983;
  56. }
  57. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement