![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
lucide-vue-next
Advanced tools
Implementation of the lucide icon library for Vue 3 applications.
What is lucide? Read it here.
:warning: This version of lucide is for Vue 3, For Vue 2 got to lucide-vue-next
yarn add lucide-vue-next
# or
npm install lucide-vue-next
It's build with ESmodules so it's completely threeshakable. Each icon can be imported as a vue component.
You can pass additional props to adjust the icon.
<template>
<Camera
color="red"
:size="32"
/>
</template>
<script>
// Returns Vue component
import { Camera } from 'lucide-vue-next';
export default {
name: "My Component",
components: { Camera }
}
</script>
name | type | default |
---|---|---|
size | Number | 24 |
color | String | currentColor |
strokeWidth | Number | 2 |
defaultClass | String | lucide-icon |
You can also pass custom props that will be added in the svg as attributes.
<template>
<Camera fill="red" />
</template>
It is possible to create one generic icon component to load icons.
:warning: Example below importing all EsModules, caution using this example, not recommended when you using bundlers, your application build size will grow strongly.
<template>
<component :is="icon" />
</template>
<script>
import * as icons from "lucide-vue-next";
export default {
props: {
name: {
type: String,
required: true,
},
},
computed: {
icon() {
return icons[this.name];
},
},
};
</script>
<template>
<div id="app">
<Icon name="Airplay" />
</div>
</template>
FAQs
A Lucide icon library package for Vue 3 applications
The npm package lucide-vue-next receives a total of 82,699 weekly downloads. As such, lucide-vue-next popularity was classified as popular.
We found that lucide-vue-next 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.