Merge pull request #19626 from bassadev/bootstrap_version

Add property 'version' to BootstrapTableProps
This commit is contained in:
Arthur Ozga
2017-09-14 15:25:27 -07:00
committed by GitHub

View File

@@ -81,6 +81,10 @@ export interface RemoteObjSpec {
export interface BootstrapTableProps extends Props<BootstrapTable> {
/**
Set version='4' to use bootstrap@4, else bootstrap@3 is used.
*/
version?: string;
/**
Use data to specify the data that you want to display on table.
*/
data: any[];