
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
@aplus-frontend/icon
Advanced tools
Vue3 SVG icon components integrated from [`@aplus-frontend/icon`](https://www.npmjs.com/settings/aplus-frontend/packages)
Vue3 SVG icon components integrated from @aplus-frontend/icon
can be imported like a component. try it now 🎉
pnpm add @aplus-frontend/icon -w
First, you should add the icons that you need into the library. After that, you can use icons in your Vue components as simply as this:
import { IconApOrder } from '@aplus-frontend/icon'
<template>
<IconApOrder />
</template>
Style properties of icon, like fontSize and color
<script setup>
import { IconApLogistics } from '@aplus-frontend/icon';
</script>
<template>
<IconApLogistics
:style="{
fontSize: '40px',
display: 'inline-block',
animation: 'spin 4s linear infinite',
}"
/>
</template>
<style lang="less">
@keyframes spin {
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
</style>
You can see more detail in the document
// or you can import all of the icons
import icons from '@aplus-frontend/icon';
pnpm run build:icons # Build library
FAQs
Vue3 SVG icon components integrated from [`@aplus-frontend/icon`](https://www.npmjs.com/settings/aplus-frontend/packages)
We found that @aplus-frontend/icon demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 8 open source maintainers 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
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.