Files
vxe-table/lib/loading/src/loading.js
xuliangzhan 6a3aba0a35 update
2019-08-25 18:11:19 +08:00

23 lines
444 B
JavaScript

"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;