mirror of https://github.com/ElemeFE/element
Tabs: fix error tab bar style
parent
af8267f948
commit
ff1251f0b1
|
@ -15,7 +15,6 @@
|
||||||
computed: {
|
computed: {
|
||||||
barStyle: {
|
barStyle: {
|
||||||
get() {
|
get() {
|
||||||
if (!this.$parent.$refs.tabs) return {};
|
|
||||||
let style = {};
|
let style = {};
|
||||||
let offset = 0;
|
let offset = 0;
|
||||||
let tabSize = 0;
|
let tabSize = 0;
|
||||||
|
@ -25,7 +24,7 @@
|
||||||
return str.toLowerCase().replace(/( |^)[a-z]/g, (L) => L.toUpperCase());
|
return str.toLowerCase().replace(/( |^)[a-z]/g, (L) => L.toUpperCase());
|
||||||
};
|
};
|
||||||
this.tabs.every((tab, index) => {
|
this.tabs.every((tab, index) => {
|
||||||
let $el = arrayFind(this.$parent.$refs.tabs, t => t.id.replace('tab-', '') === tab.paneName);
|
let $el = arrayFind(this.$parent.$refs.tabs || [], t => t.id.replace('tab-', '') === tab.paneName);
|
||||||
if (!$el) { return false; }
|
if (!$el) { return false; }
|
||||||
|
|
||||||
if (!tab.active) {
|
if (!tab.active) {
|
||||||
|
|
Loading…
Reference in New Issue