Implementing Secure Avatar Uploads to Alibaba Cloud OSS with ElementUI and Spring Boot
Integrating image uploads using the ElementUI el-upload component requires a synchronized flow between the frontend and the backend storage service. This guide demonstrates how to upload an avatar to Alibaba Cloud OSS (Object Storage Service) and persist the resulting URL in a database.
Frontend Implementation
The el-upload component utilizes t ...
Posted on Fri, 12 Jun 2026 17:05:00 +0000 by TANK
Restricting Date Selection in Element UI Date Pickers
Preventing Cross-Year Selection
The el-date-picker component in Element UI is highly customizable. A common requirement is to restrict date range selection to a single year. This can be achieved by leveraging the picker-options prop, specifically the disabledDate and onPick hooks.
The following example demonstrates how to disable dates from dif ...
Posted on Wed, 20 May 2026 06:57:16 +0000 by RyanMinor
Building a Vue Admin Dashboard with ElementUI
Project Repository
GitHub Repository: https://github.com/imxiaoer/ElementUIAdmin
Live Demo: https://imxiaoer.github.io/ElementUIAdmin/dist/index
Project Dependencies
HTTP Client: "axios": "^0.18.0"
Charting Library: "echarts": "^4.2.0-rc.2"
Rich Text Editor: "vue-quill-editor": "^3.0.6"
Routing: "vue-router": "^3.0.1"
State Managem ...
Posted on Thu, 14 May 2026 09:20:40 +0000 by Alex007152