Files
vxe-table/examples/plugins/table/renderer/empty.tsx

15 lines
321 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { VXETable } from '../../../../packages/all'
// 创建一个简单的空内容渲染
VXETable.renderer.add('NotData', {
// 空内容模板
renderEmpty () {
return [
<span>
<img src="/vxe-table/static/other/img1.gif"/>
<p></p>
</span>
]
}
})