mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
更新文档
This commit is contained in:
23
lib/loading/src/loading.js
Normal file
23
lib/loading/src/loading.js
Normal file
@@ -0,0 +1,23 @@
|
||||
"use strict";
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.default = void 0;
|
||||
var _default = {
|
||||
name: 'VxeTableLoading',
|
||||
props: {
|
||||
visible: Boolean
|
||||
},
|
||||
render: function render(h) {
|
||||
return h('div', {
|
||||
class: 'vxe-table--loading',
|
||||
style: {
|
||||
display: this.visible ? 'block' : 'none'
|
||||
}
|
||||
}, [h('div', {
|
||||
class: 'vxe-table--spinner'
|
||||
})]);
|
||||
}
|
||||
};
|
||||
exports.default = _default;
|
||||
1
lib/loading/src/loading.min.js
vendored
Normal file
1
lib/loading/src/loading.min.js
vendored
Normal file
@@ -0,0 +1 @@
|
||||
"use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.default=void 0;var _default={name:"VxeTableLoading",props:{visible:Boolean},render:function(e){return e("div",{class:"vxe-table--loading",style:{display:this.visible?"block":"none"}},[e("div",{class:"vxe-table--spinner"})])}};exports.default=_default;
|
||||
Reference in New Issue
Block a user