xianniu-ui 0.3.18 → 0.3.19
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/lib/xianniu-ui.common.js +26 -47
- package/lib/xianniu-ui.umd.js +26 -47
- package/lib/xianniu-ui.umd.min.js +3 -3
- package/package.json +1 -1
- package/packages/table/main.vue +4 -0
package/package.json
CHANGED
package/packages/table/main.vue
CHANGED
|
@@ -129,6 +129,9 @@
|
|
|
129
129
|
></column>
|
|
130
130
|
</template>
|
|
131
131
|
</slot>
|
|
132
|
+
<template #append v-if="$slots.append">
|
|
133
|
+
<slot name="append"></slot>
|
|
134
|
+
</template>
|
|
132
135
|
</el-table>
|
|
133
136
|
|
|
134
137
|
<template v-if="!$utils.isEmpty(page)">
|
|
@@ -195,6 +198,7 @@ export default {
|
|
|
195
198
|
},
|
|
196
199
|
computed: {},
|
|
197
200
|
created() {
|
|
201
|
+
console.log(this.$slots);
|
|
198
202
|
!this.$slots.default &&
|
|
199
203
|
this.columns.length &&
|
|
200
204
|
this.columns.forEach((item) => {
|