docs/guide/vue/getting-started.md
This guide will help you get started with Lucide in your Vue project. Make sure you have a Vue environment set up. If you don't have one yet, you can create a new Vue project using Vite, or any other Vue boilerplate of your choice.
::: code-group
pnpm add @lucide/vue
yarn add @lucide/vue
npm install @lucide/vue
bun add @lucide/vue
:::
Lucide is built with ES Modules, so it's completely tree-shakable.
Each icon can be imported as a Vue component, which renders an inline SVG element. This way, only the icons that are imported into your project are included in the final bundle. The rest of the icons are tree-shaken away.
<script setup>
import { Camera } from '@lucide/vue';
</script>
<template>
<Camera />
</template>
To customize the appearance of an icon, you can use the following props:
| name | type | default |
|---|---|---|
size | number | 24 |
color | string | currentColor |
stroke-width | number | 2 |
absoluteStrokeWidth | boolean | false |
default-class | string | lucide-icon |
Because icons render as SVG elements, all standard SVG attributes can also be applied as props. See the list of SVG Presentation Attributes on MDN.
<template>
<Camera :size="48" color="red" :stroke-width="1" />
</template>
More examples and details how to use props, continue the guide:
<OverviewLinkGrid> <OverviewLink v-for="item in vueSidebar[1].items" :key="item.link" :href="item.link" :title="item.text" :desc="item.desc"/> </OverviewLinkGrid>