## Basic Tabs ```js ``` ## Basic Tabs with align left ```js ``` ## Basic Tabs with activeTab ```js ``` ## Basic Tabs with url ```js ``` ## Tabs with v-model and update event ```js const selectedTab = {} const onUpdate = (value) => { alert(JSON.stringify(value)) } ``` ## Tabs with fake asynchro API calls ```js new Vue({ el: '#app', template: ` `, data () { return { selectedTab: {}, tabs: [] } }, created () { setTimeout(() => { this.tabs = [ { id: 1, title: 'my-title-1' }, { id: 2, title: 'my-title-2' } ] }, 3000) } }) ```