Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 424 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 424 Bytes

Twitter Bootstrap Tabs

I use this in Laravel applications.

There are many ways to include this into your app.

Vue.component('tab', require('./Tab.vue'));
Vue.component('tabs', require('./Tabs.vue'));

or:

import Tab from './Tab.vue';
Vue.component('tab', Tab);
// etc

And use it:

<tabs>
  <tab name="Records" selected>

  </tab>
  <tab name="Settings">

  </tab>
  <tab name="Alerts">

  </tab>
</tabs>