Building a Reusable Element Plus Data Table with Filtering, Pagination, Dynamic Columns, and Inline Editing
Table Configuration
Create a configuration file to define grid schemas and search parameters. Each column definition requires a field (data key) and header (display name). Optional properties control alignment, width, rendering types (e.g., timestamp, image, switch, tag), and inline editing.
// grid.config.ts
import type { ColumnDef, FilterDef ...
Posted on Wed, 05 Aug 2026 16:29:02 +0000 by php_2004
Custom Navigation Bar Implementation for WeChat Mini Program in UniApp
Hiding the Native NavigationBar
To customize the navigation bar, first hide the native one. There are two approaches:
Global Customization
In the global configuration (e.g., manifest.json), set navigationStyle to custom:
"globalStyle": {
"navigationStyle": "custom"
}
Page-Specific Customization
For individua ...
Posted on Sun, 07 Jun 2026 17:00:06 +0000 by Domestics