Vue3 Descriptions Component Implementation
Overview
The Descriptions component provides a structured way to display key-value pairs in a tabular format. It consists of two parts: the main Descriptions container and individual DescriptionsItem elements.
API Specifications
Descriptions Props
Property
Description
Type
Default
title
Title displayed at the top of the description list
...
Posted on Sun, 12 Jul 2026 16:36:35 +0000 by jurdygeorge
Building a Reusable Dialog Component in Vue.js
Vue’s component model makes it straightforward to encapsulate common UI patterns like modal dialogs. A well-designed dialog component accepts configuration through props, exposes slots for flexible content, and communicates state changes back to the parent using events. The implementation described here mimics the behavior of popular UI librari ...
Posted on Fri, 08 May 2026 11:30:49 +0000 by Jorn TK