0.0.2 • Published 7 years ago

vue-mint-tab-item-styled v0.0.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

vue-mint-tab-item-styled

A more configurable version of mint-ui's tab-item component. You can pass in the style object as a prop in order to control the appearance of each tab-item in a tabbar or navbar.

Usage

<mt-tab-item-styled id="1" :style="style"></mt-tab-item-styled>
export default {
  ...
  data() {
    return {
      ...
      style: {
        color: 'red';
        backgroundColor: 'yellow'
      }
      ...
    }
  }
  ...
}