在 GitHub 上檢視
內容結構
Bootstrap Table 源代碼下載包括預編譯的 CSS、JavaScript、本地化文件和擴展,並提供編譯和壓縮版本,以及文檔。
本頁目錄
預編譯的 Bootstrap Table
更具體地說,它包含以下內容:
bootstrap-table/
└── dist/
├── extensions/
├── locale/
├── themes/
├── bootstrap-table-locale-all.js
├── bootstrap-table-locale-all.min.js
├── bootstrap-table.css
├── bootstrap-table.min.css
├── bootstrap-table.js
└── bootstrap-table.min.js
dist/ 文件夾包含所有從 src/ 編譯和壓縮的文件。為了方便使用,我們還將所有本地化文件編譯到一個文件 bootstrap-table-locale-all.js 中。
源代碼
bootstrap-table/
├── site/
└── src/
├── extensions/
├── locale/
├── themes/
├── bootstrap-table.css
└── bootstrap-table.js
src/、locale/ 和 extensions/ 是我們 CSS 和 JS 的源代碼。site/ 文件夾包含我們文檔的源代碼。其他文件如 package.json、LICENSE 和 README.md 提供包信息、許可證和開發指南。