mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
61 lines
940 B
JavaScript
61 lines
940 B
JavaScript
import { use } from '../utils';
|
|
|
|
const [sfc, bem] = use('tabbar');
|
|
|
|
export default sfc({
|
|
data() {
|
|
return {
|
|
items: []
|
|
};
|
|
},
|
|
|
|
props: {
|
|
value: Number,
|
|
activeColor: String,
|
|
fixed: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
default: 1
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
items() {
|
|
this.setActiveItem();
|
|
},
|
|
|
|
value() {
|
|
this.setActiveItem();
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
setActiveItem() {
|
|
this.items.forEach((item, index) => {
|
|
item.active = index === this.value;
|
|
});
|
|
},
|
|
|
|
onChange(active) {
|
|
if (active !== this.value) {
|
|
this.$emit('input', active);
|
|
this.$emit('change', active);
|
|
}
|
|
}
|
|
},
|
|
|
|
render(h) {
|
|
return (
|
|
<div
|
|
style={{ zIndex: this.zIndex }}
|
|
class={['van-hairline--top-bottom', bem({ fixed: this.fixed })]}
|
|
>
|
|
{this.slots()}
|
|
</div>
|
|
);
|
|
}
|
|
});
|