Use nice and simle tabs in your dashboard!

    1. <vuestic-tabs class="tabs" :names="['FirstTab', 'SecondTab']">
    2. <div slot="SecondTab" class="d-flex justify-content-center">
    3. Second Tab content
    4. </div>
    5. <div slot="FirstTab" class="d-flex justify-content-center">
    6. First Tab content
    7. </div>
    8. </vuestic-tabs>

    Props

    • names - Array (String[]) - array of tab names (add same names in slot attributes of your tabs)
      Find DEMOs here!