element-ui-root 2.9.3 → 2.9.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +7 -3
- package/dist/index.umd.js +7 -3
- package/dist/index.umd.min.js +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -24602,7 +24602,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24602
24602
|
type = 'border-card',
|
|
24603
24603
|
...props
|
|
24604
24604
|
} = this.$attrs;
|
|
24605
|
-
|
|
24605
|
+
const data = this.option.length > 0 ? this.option : this.config.length > 0 ? this.config : this.data.length > 0 ? this.data : [];
|
|
24606
24606
|
return h("el-tabs", {
|
|
24607
24607
|
"attrs": {
|
|
24608
24608
|
"type": type
|
|
@@ -158721,11 +158721,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158721
158721
|
AuploadFile: _components_Aupload_File__WEBPACK_IMPORTED_MODULE_1__["default"]
|
|
158722
158722
|
},
|
|
158723
158723
|
props: {
|
|
158724
|
+
data: {
|
|
158725
|
+
type: Array,
|
|
158726
|
+
default: () => []
|
|
158727
|
+
},
|
|
158724
158728
|
config: {
|
|
158725
158729
|
type: Array,
|
|
158726
158730
|
default: () => []
|
|
158727
158731
|
},
|
|
158728
|
-
|
|
158732
|
+
option: {
|
|
158729
158733
|
type: Array,
|
|
158730
158734
|
default: () => []
|
|
158731
158735
|
},
|
|
@@ -158759,7 +158763,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158759
158763
|
methods: {
|
|
158760
158764
|
create() {
|
|
158761
158765
|
const h = this.$createElement;
|
|
158762
|
-
const data = this.
|
|
158766
|
+
const data = this.option.length > 0 ? this.option : this.config.length > 0 ? this.config : this.data.length > 0 ? this.data : [];
|
|
158763
158767
|
return h("div", {
|
|
158764
158768
|
"class": "a-actions"
|
|
158765
158769
|
}, [data.length > 0 && data.map((a, b) => {
|
package/dist/index.umd.js
CHANGED
|
@@ -24611,7 +24611,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24611
24611
|
type = 'border-card',
|
|
24612
24612
|
...props
|
|
24613
24613
|
} = this.$attrs;
|
|
24614
|
-
|
|
24614
|
+
const data = this.option.length > 0 ? this.option : this.config.length > 0 ? this.config : this.data.length > 0 ? this.data : [];
|
|
24615
24615
|
return h("el-tabs", {
|
|
24616
24616
|
"attrs": {
|
|
24617
24617
|
"type": type
|
|
@@ -158730,11 +158730,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158730
158730
|
AuploadFile: _components_Aupload_File__WEBPACK_IMPORTED_MODULE_1__["default"]
|
|
158731
158731
|
},
|
|
158732
158732
|
props: {
|
|
158733
|
+
data: {
|
|
158734
|
+
type: Array,
|
|
158735
|
+
default: () => []
|
|
158736
|
+
},
|
|
158733
158737
|
config: {
|
|
158734
158738
|
type: Array,
|
|
158735
158739
|
default: () => []
|
|
158736
158740
|
},
|
|
158737
|
-
|
|
158741
|
+
option: {
|
|
158738
158742
|
type: Array,
|
|
158739
158743
|
default: () => []
|
|
158740
158744
|
},
|
|
@@ -158768,7 +158772,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158768
158772
|
methods: {
|
|
158769
158773
|
create() {
|
|
158770
158774
|
const h = this.$createElement;
|
|
158771
|
-
const data = this.
|
|
158775
|
+
const data = this.option.length > 0 ? this.option : this.config.length > 0 ? this.config : this.data.length > 0 ? this.data : [];
|
|
158772
158776
|
return h("div", {
|
|
158773
158777
|
"class": "a-actions"
|
|
158774
158778
|
}, [data.length > 0 && data.map((a, b) => {
|