vue-mint-tab-item-styled
v0.0.2
Published
A more configurable version of mint-ui's tab-item component.
Downloads
4
Readme
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'
}
...
}
}
...
}