
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A set of extensible and data-driven components for Vue, designed to display data in both table and card formats.
A set of extensible and data-driven components for Vue, designed to display data in both table and card formats. DataDeck makes extensive use of Vue 3 composition in order to provide DataDeckTable and DataDeckCards; two functionally identical, yet visually distinct components. It has out of the box support for sorting, filtering, pagination, custom layouts via slots and more.
Simply add data-deck to your project via your chosen package manager:
npm install data-deckyarn add data-deckThe two primary components exported by this package are: DataDeckTable for tables and DataDeckCards for card galleries. Both use the same props and basic setup.
import { DataDeckTable, DataDeckCards } from 'data-deck'; const gymData = [
{ 'name': 'John Doe', 'age': '35', 'gender': 'Male', 'membership_status': 'Active', 'mob': '03490234920' },
{ 'name': 'Jane Doe', 'age': '18', 'gender': 'Female', 'membership_status': 'Active', 'mob': '2425325425' },
{ 'name': 'John Smith', 'age': '19', 'gender': 'Male', 'membership_status': 'Inactive', 'mob': '1341414553' }
];
const gymMetadata = [
{ value: 'name', label: 'Name' },
{ value: 'age', label: 'Age' },
{ value: 'gender', label: 'Gender' },
{ value: 'mob', label: 'Phone Number' },
{ value: 'membership_status', label: 'Membership' }
];
<DataDeckTable :data="gymData" :field-metadata="gymMetadata" />
<DataDeckCards :data="gymData" :field-metadata="gymMetadata" />
This will render DataDeck components with default settings and styling.
DataDeck provides various configuration options. See docs/configuration.md for instructions.
It is recommended that the basic default styles are overridden. See docs/layout-examples.md for a guide on how to do this.
FAQs
A set of extensible and data-driven components for Vue, designed to display data in both table and card formats.
We found that data-deck demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.