a-virtual-table
Version:
The virtual scrolling component developed based on the Table component of Ant Design supports dynamic height and solves the problem of scrolling stuck when the amount of data is large.
16 lines (12 loc) • 312 B
JavaScript
import base from './rollup.config.base'
import { terser } from 'rollup-plugin-terser'
const config = Object.assign({}, base, {
output: {
format: 'iife',
file: './dist/a-virtual-table.min.js',
name: 'AVirtualTable',
sourcemap: false
}
})
config.plugins.push(terser())
export default config