mirror of
https://gitee.com/xuliangzhan_admin/vxe-table.git
synced 2026-01-21 05:27:57 +08:00
19 lines
299 B
JavaScript
19 lines
299 B
JavaScript
export default {
|
|
name: 'VxeLoading',
|
|
props: {
|
|
visible: Boolean
|
|
},
|
|
render (h) {
|
|
return h('div', {
|
|
class: 'vxe-loading',
|
|
style: {
|
|
display: this.visible ? 'block' : 'none'
|
|
}
|
|
}, [
|
|
h('div', {
|
|
class: 'vxe-loading--spinner'
|
|
})
|
|
])
|
|
}
|
|
}
|