0.1.0 • Published 6 years ago

vuex-tabs v0.1.0

Weekly downloads
4
License
GPL-3
Repository
github
Last release
6 years ago

vuex-tabs

Tabs component for Vue.js/Vuex

Installation:

NPM:

npm install --save vuex-tabs

Yarn:

yarn add vuex-tabs

Usage:

<template>
  <tabs>
    <tab title="Tab 1" active="true">
      Tab 1 content
    </tab>
    <tab title="Tab 2">
      Tab 2 content
    </tab>
    <tab title="Tab 3">
      Tab 3 content
    </tab>
  </tabs>
</template>

<script>
import { Tabs, Tab } from 'vuex-tabs';

export default {
  components: { Tabs, Tab }
}
</script>