DEV Community

Cover image for Ionicons in Vue.js
Raymond Camden
Raymond Camden

Posted on • Originally published at raymondcamden.com on

Ionicons in Vue.js

It’s been a long time since I’ve written about Ionic. In general, I haven’t done much in the hybrid mobile space over the past few years. I pay attention to their updates though (version 5 looks impressive) and noticed recently they did a major update to their Ionicons project.

Screen shot of the Ionicon site

I’ve only used Ionicons with Ionic project, and while not required, it was useful as hell to have a robust icon library to use when building mobile apps. I knew that the project could be used outside of Ionic but I hadn’t actually tested it out. On a whim, I thought I’d take a quick look at what you need to do to use it in a Vue app.

Spoiler - it was ridiculously easy.

I started off with a Vue application on CodePen. And by “application”, I mean just a CodePen with the Vue script tag added. I then setup some data for testing:

Vue.config.productionTip = false;
Vue.config.devtools = false;

const app = new Vue({
  el:'#app',
  data: {
    drinks: [
        {"name":"Abita","type":"beer"},
        {"name":"Merlot","type":"wine"},
        {"name":"Saint Arnold","type":"beer"},
        {"name":"Red Something","type":"wine"}
      ]
  }
})

Enter fullscreen mode Exit fullscreen mode

I’ve got an array of drinks where each one has a name and type. To make things a bit simpler, the types also happen to correspond to icons supported by Ionicons.

To add support, and pay attention, this is really complex, I added this script src: https://unpkg.com/ionicons@5.0.0/dist/ionicons.js.

And that’s it. Done. Ionicons make use of web components to add in support for the icons. (For unsupported browsers, polyfills should be used. I did a quick test with IE11 and it worked fine.) Using them then is as simple as this:

<ion-icon name="something"></ion-icon>

Enter fullscreen mode Exit fullscreen mode

where “something” refers to the icon you want to load. You may not notice it at first but the home page has a search field that lets you quickly look for a particular icon by name. The usage page also details how to use variants, like filled icons versus outlined. You can even specify per platform (ios versus android) like so:

<ion-icon ios="heart-outline" md="heart-sharp"></ion-icon>

Enter fullscreen mode Exit fullscreen mode

My guess it that every single browser outside of Safari will use the md version. In my quick test on my Windows machine, Firefox used the md version.

So given my data, I wanted to render my drinks and use the right icon based on the drink type. This is what I used.

<div id="app" v-cloak>
  <ul>
    <li v-for="drink in drinks">
      {{drink.name}} <ion-icon :name="drink.type"></ion-icon>
    </li>
  </ul>
</div>

Enter fullscreen mode Exit fullscreen mode

And here’s the result:

So yeah, I love it when I decide to test something to see if it works, and it just does, and it doesn’t get complex in any way whatsoever. I had not thought of Ionicons at all recently but now I’m absolutely going to use it in my Vue apps where it makes sense.

Oops, One More Thing

I had my buddy and Ionic devrel Mike Hartington do a quick sanity check on the post. He wondered why I didn't run into the "Unknown custom element" issue. Turns out, I had run into it, just hadn't noticed. It's an warning thrown in the console, not an error, and it takes all of two seconds to fix. Basically, you tell Vue to calm down and don't worry about it like so:

Vue.config.ignoredElements = ['ion-icon'];
Enter fullscreen mode Exit fullscreen mode

Header photo by Harpal Singh on Unsplash

Oldest comments (0)