mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
83 lines
1.6 KiB
JavaScript
83 lines
1.6 KiB
JavaScript
import { createNamespace } from '../utils';
|
|
|
|
const bem = createNamespace('tab')[1];
|
|
|
|
export default {
|
|
props: {
|
|
type: String,
|
|
color: String,
|
|
title: String,
|
|
isActive: Boolean,
|
|
ellipsis: Boolean,
|
|
disabled: Boolean,
|
|
scrollable: Boolean,
|
|
activeColor: String,
|
|
inactiveColor: String,
|
|
swipeThreshold: Number
|
|
},
|
|
|
|
computed: {
|
|
style() {
|
|
const style = {};
|
|
const { color, isActive } = this;
|
|
const isCard = this.type === 'card';
|
|
|
|
// card theme color
|
|
if (color && isCard) {
|
|
style.borderColor = color;
|
|
|
|
if (!this.disabled) {
|
|
if (isActive) {
|
|
style.backgroundColor = color;
|
|
} else {
|
|
style.color = color;
|
|
}
|
|
}
|
|
}
|
|
|
|
const titleColor = isActive ? this.activeColor : this.inactiveColor;
|
|
if (titleColor) {
|
|
style.color = titleColor;
|
|
}
|
|
|
|
if (this.scrollable && this.ellipsis) {
|
|
style.flexBasis = `${88 / this.swipeThreshold}%`;
|
|
}
|
|
|
|
return style;
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
onClick() {
|
|
this.$emit('click');
|
|
},
|
|
|
|
renderTitle(el) {
|
|
const { title } = this.$refs;
|
|
title.innerHTML = '';
|
|
title.appendChild(el);
|
|
}
|
|
},
|
|
|
|
render() {
|
|
return (
|
|
<div
|
|
role="tab"
|
|
aria-selected={this.isActive}
|
|
class={bem({
|
|
active: this.isActive,
|
|
disabled: this.disabled,
|
|
complete: !this.ellipsis
|
|
})}
|
|
style={this.style}
|
|
onClick={this.onClick}
|
|
>
|
|
<span ref="title" class={{ 'van-ellipsis': this.ellipsis }}>
|
|
{this.title}
|
|
</span>
|
|
</div>
|
|
);
|
|
}
|
|
};
|