Install Monicon with Nuxt

Setting up Monicon with Nuxt is a straightforward process. This guide will walk you through the installation and configuration steps to get started with Monicon in your Nuxt project.

Install

First, you’ll need to install the necessary dependencies for Monicon. In your project directory, run the following command.

npm i @monicon/vue @monicon/nuxt

Next, install the development dependency @iconify/json for icon sets. This package provides a comprehensive collection of icons that you can easily integrate into your project.

npm i -D @iconify/json
 
# or specific icon sets
npm i -D @iconify-json/mdi @iconify-json/feather

Configure Nuxt

Now that the dependencies are installed, you’ll need to configure Nuxt to use Monicon.

nuxt.config.ts
export default defineNuxtConfig({
  devtools: { enabled: true },
  modules: ["@monicon/nuxt"],
  monicon: {
    icons: [
      "mdi:home",
      "feather:activity",
      "logos:active-campaign",
      "lucide:badge-check"
    ],
  },
});
 
💡

The icons array in the monicon plugin configuration specifies the icon sets you want to use in your project. You can add more icon sets as needed. For a complete list of available icon sets, refer to the Icones website.

Usage

You can now use Monicon in your Vue components. Here’s an example of how to use Monicon in a Vue component.

src/app.vue
<template>
    <Monicon name="mdi:home" />
    <Monicon name="logos:active-campaign" :size="30" />
    <Monicon name="feather:activity" color="red" />
    <Monicon name="lucide:badge-check" :size="24" :strokeWidth="4" />
    <monicon name="mdi:home" />
</template>

Next Steps

You’ve successfully set up Monicon! You can now explore more icon sets and customize your usage further.