mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
[bugfix] Tab: line width can be zero (#2081)
This commit is contained in:
parent
d8fb7145fd
commit
469e8191df
@ -256,7 +256,7 @@ export default create({
|
||||
}
|
||||
|
||||
const tab = this.$refs.tabs[this.curActive];
|
||||
const width = this.lineWidth || (tab.offsetWidth / 2);
|
||||
const width = this.isDef(this.lineWidth) ? this.lineWidth : (tab.offsetWidth / 2);
|
||||
const left = tab.offsetLeft + (tab.offsetWidth - width) / 2;
|
||||
|
||||
this.lineStyle = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user