
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@codehat/vue-img-cards
Advanced tools
Image card component library for Vue
## 📝 Table of Contents
This is a set of Vue Image card components for special purposes. Each components come with props and slots for easy customization. The CSS animation make it awesome, thanks to the developer community.
npm i --save @codehat/img-cards
The library includes the following components
VueProfileCard is a CSS animated Image Card with background animation.
This component come with a single prop img, which can be used to pass a image url and an alt tag. This prop is an object.
img: {
type: Object,
default: new Object({
src:
"./profile.png",
alt: "images",
}),
},
The slot details can be used to _add set of social icons or single paragraph or heading of your choice.
<template>
<div id="app">
<vue-profile-card >
<template slot="details">
<h1 class="is-size-5">Web Developer</h1>
<span class="icon ">
<i>
<a :href="`${fb}`"> <v-icon name="md-facebook" scale="1.5" /></a>
</i>
<i>
<a :href="`${gh}`"> <v-icon name="oi-octoface" scale="1.5" /></a>
</i>
<i>
<a :href="`${tw}`"> <v-icon name="bi-twitter" scale="1.5"/></a>
</i> <i>
<a :href="`${wp}`"> <v-icon name="fa-wordpress" scale="1.5"/></a>
</i></span>
</template>
</vue-profile-card>
</div>
</template>
<script>
import VueProfileCard from '@manojap/vue-profile-card'
export default {
name: "App",
components: {
VueProfileCard
},
};
</script>
VueMiniBio is a Image card with a Opening panel (hover effect) which can be used to show bio with social (customizable)
img slot can be used to style the main image according to your needs and the *detail slot help to set the content
<script>
import {vueMiniBio} from '@codehat/vue-img-cards';
import Vue from 'vue';
export default Vue.extend({
components: { vueMiniBio },
name: 'App',
});
</script>
<template>
<div id="app">
<vue-mini-bio/>
</div>
</template>
FAQs
A set of Vue image card components for special purposes
We found that @codehat/vue-img-cards demonstrated a not healthy version release cadence and project activity because the last version was released 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.