Installation
Vue Package

Vue Package Installation

To get started with the HugeIcons Vue 3 package, you need to install it from npm or yarn.

Installation

First, you have to activate your license and get your npm token, check the activation guide for more information.

After that you can install the @hugeicons/vue package:

npm i @hugeicons/vue

Example

Here's a quick example of how to use an icon in a Vue project:

<script setup>
	import {Home01Icon} from '@hugeicons/vue';
</script>
 
<template>
  <Home01Icon />
</template>